Fix ChangeLog and source code comment.

This commit is contained in:
Werner Lemberg 2005-12-06 10:47:44 +00:00
parent a3690cdadd
commit 3b8db66941
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
2005-12-02 Taek Kwan(TK) Lee <taeklee@gmail.com>
* src/type42/t42objs.x (T42_Face_Init): Replace call to
* src/type42/t42objs.c (T42_Face_Init): Replace call to
FT_New_Memory_Face with call to FT_Open_Face to pass `params'.
2005-11-30 Werner Lemberg <wl@gnu.org>

View File

@ -2112,8 +2112,8 @@
if ( pixel_height < 1 )
pixel_height = 1;
/* use `>=' to avoid potention compiler warning on 16bit platforms */
if ( pixel_width >= 0xFFFFU )
/* use `>=' to avoid potential compiler warnings on 16bit platforms */
if ( pixel_width >= 0xFFFFU )
pixel_width = 0xFFFFU;
if ( pixel_height >= 0xFFFFU )
pixel_height = 0xFFFFU;