aflatin.c: Fix compiler warning.

This commit is contained in:
Werner Lemberg 2009-06-20 06:32:23 +02:00
parent ae342dab60
commit b34c9b49cc
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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 );