Skip to content

Commit f4d3bc8

Browse files
committed
[lib] Fixed pointer as array warning...
1 parent ba90396 commit f4d3bc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/SFGlyphManipulation.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2016 Muhammad Tayyab Akram
2+
* Copyright (C) 2018 Muhammad Tayyab Akram
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -92,7 +92,7 @@ static SFBoolean _SFAssessGlyphByClass(_SFGlyphAgent *glyphAgent)
9292

9393
static SFBoolean _SFAssessGlyphByCoverage(_SFGlyphAgent *glyphAgent)
9494
{
95-
SFData coverage = SFData_Subdata(glyphAgent->helperPtr, glyphAgent->recordValue);
95+
SFData coverage = SFData_Subdata((SFData)glyphAgent->helperPtr, glyphAgent->recordValue);
9696
SFUInteger covIndex;
9797

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

0 commit comments

Comments
 (0)