Skip to content

Commit

Permalink
[lib] Fixed pointer as array warning...
Browse files Browse the repository at this point in the history
  • Loading branch information
mta452 committed Jan 27, 2018
1 parent ba90396 commit f4d3bc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/SFGlyphManipulation.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 Muhammad Tayyab Akram
* Copyright (C) 2018 Muhammad Tayyab Akram
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -92,7 +92,7 @@ static SFBoolean _SFAssessGlyphByClass(_SFGlyphAgent *glyphAgent)

static SFBoolean _SFAssessGlyphByCoverage(_SFGlyphAgent *glyphAgent)
{
SFData coverage = SFData_Subdata(glyphAgent->helperPtr, glyphAgent->recordValue);
SFData coverage = SFData_Subdata((SFData)glyphAgent->helperPtr, glyphAgent->recordValue);
SFUInteger covIndex;

covIndex = SFOpenTypeSearchCoverageIndex(coverage, glyphAgent->glyphID);
Expand Down

0 comments on commit f4d3bc8

Please sign in to comment.