forked from minhngoc25a/freetype2
aflatin.c: Fix compiler warning.
This commit is contained in:
parent
ae342dab60
commit
b34c9b49cc
|
@ -1,3 +1,8 @@
|
|||
2009-06-20 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/autofit/aflatin.c (af_latin_metrics_check_digits): Fix
|
||||
compiler warning.
|
||||
|
||||
2009-06-20 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* builds/compiler/gcc.mk (CFLAGS): Use -O3, not -O6.
|
||||
|
|
|
@ -409,7 +409,7 @@
|
|||
for ( i = 0x30; i <= 0x39; i++ )
|
||||
{
|
||||
FT_UInt glyph_index;
|
||||
FT_Fixed advance, old_advance;
|
||||
FT_Fixed advance, old_advance = 0;
|
||||
|
||||
|
||||
glyph_index = FT_Get_Char_Index( face, i );
|
||||
|
|
Loading…
Reference in New Issue