[MPlayer-cvslog] r19210 - trunk/libvo/font_load_ft.c

diego subversion at mplayerhq.hu
Fri Jul 28 10:20:31 CEST 2006


Author: diego
Date: Fri Jul 28 10:20:31 2006
New Revision: 19210

Modified:
   trunk/libvo/font_load_ft.c

Log:
unused variable warning fix


Modified: trunk/libvo/font_load_ft.c
==============================================================================
--- trunk/libvo/font_load_ft.c	(original)
+++ trunk/libvo/font_load_ft.c	Fri Jul 28 10:20:31 2006
@@ -797,7 +797,7 @@
     FT_ULong  charcode;
 #endif
     FT_UInt   gindex;
-    int i,j;
+    int i;
 
     if (face->charmap==NULL || face->charmap->encoding!=ft_encoding_unicode) {
 	WARNING("Unicode charmap not available for this font. Very bad!");
@@ -816,6 +816,7 @@
     }
 #else
     // for FT < 2.1 we have to use brute force enumeration
+    int j;
     i = 0;
     for (j = 33; j < 65536; j++) {
 	gindex = FT_Get_Char_Index(face, j);



More information about the MPlayer-cvslog mailing list