Return to C89 compliance

This commit is contained in:
Ryan Hendrickson
2015-08-24 01:26:43 -04:00
parent b93cc077ea
commit 7513a5f50b
+2 -1
View File
@@ -1076,7 +1076,8 @@ ligatureGlyphsForChars(const unichar *chars, CGGlyph *glyphs, CGPoint *positions
}
}
// fixup relative positioning
for( CFIndex i = 0; i < offset; ++i ) {
CFIndex i;
for( i = 0; i < offset; ++i ) {
positions[i].x += refPos.x;
positions[i].y += refPos.y;
}