* src/base/ftobjs.c (FT_Request_Metrics): Fix compiler warning.

This commit is contained in:
Werner Lemberg 2007-06-03 05:58:30 +00:00
parent 5b591e49cf
commit ce280a22e2
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-06-03 Ismail Dönmez <ismail@pardus.org.tr>
* src/base/ftobjs.c (FT_Request_Metrics): Fix compiler warning.
2007-06-02 Werner Lemberg <wl@gnu.org>
* include/freetype/fterrdef.h (FT_Err_Corrupted_Font_Header,

View File

@ -2230,7 +2230,7 @@
if ( FT_IS_SCALABLE( face ) )
{
FT_Long w, h, scaled_w = 0, scaled_h = 0;
FT_Long w = 0, h = 0, scaled_w = 0, scaled_h = 0;
switch ( req->type )