shithub: freetype+ttf2subf

Download patch

ref: 0197508440b39fbfd5f1e9ab7ff946ba4944ba72
parent: 0aa1de621cb920d294f3a0c5e3f84f24614d52bb
author: Werner Lemberg <[email protected]>
date: Mon Nov 16 18:10:53 EST 2009

Fix compiler warnings.
Reported by Kevin Blenkinsopp <[email protected]>.

* src/sfnt/ttload.c (check_table_dir): Use proper data type.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-11-16  Werner Lemberg  <[email protected]>
+
+	Fix compiler warnings.
+	Reported by Kevin Blenkinsopp <[email protected]>.
+
+	* src/sfnt/ttload.c (check_table_dir): Use proper data type.
+
 2009-11-15  Werner Lemberg  <[email protected]>
 
 	Really fix FreeDesktop bug #21197.
--- a/src/sfnt/ttload.c
+++ b/src/sfnt/ttload.c
@@ -168,10 +168,10 @@
   check_table_dir( SFNT_Header  sfnt,
                    FT_Stream    stream )
   {
-    FT_Error  error;
-    FT_UInt   nn, valid_entries = 0;
-    FT_UInt   has_head = 0, has_sing = 0, has_meta = 0;
-    FT_ULong  offset = sfnt->offset + 12;
+    FT_Error   error;
+    FT_UShort  nn, valid_entries = 0;
+    FT_UInt    has_head = 0, has_sing = 0, has_meta = 0;
+    FT_ULong   offset = sfnt->offset + 12;
 
     static const FT_Frame_Field  table_dir_entry_fields[] =
     {