mirror of https://github.com/freetype/freetype
* src/base/ftobjs.c (FT_Request_Metrics): Fix compiler warning.
This commit is contained in:
parent
5b591e49cf
commit
ce280a22e2
|
@ -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,
|
||||
|
|
|
@ -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 )
|
||||
|
|
Loading…
Reference in New Issue