[Mplayer-cvslog] CVS: main/TOOLS/subfont-c subfont.c,1.26,1.27
Dominik Mierzejewski CVS
syncmail at mplayerhq.hu
Sat Aug 28 22:53:03 CEST 2004
CVS change done by Dominik Mierzejewski CVS
Update of /cvsroot/mplayer/main/TOOLS/subfont-c
In directory mail:/var2/tmp/cvs-serv2142/subfont-c
Modified Files:
subfont.c
Log Message:
fix overcomplicated macros and a few warnings
Index: subfont.c
===================================================================
RCS file: /cvsroot/mplayer/main/TOOLS/subfont-c/subfont.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- subfont.c 19 Jul 2004 23:16:51 -0000 1.26
+++ subfont.c 28 Aug 2004 20:53:01 -0000 1.27
@@ -74,12 +74,9 @@
-#define eprintf(...) fprintf(stderr, __VA_ARGS__)
-#define ERROR_(msg, ...) (eprintf("%s: error: " msg "\n", command, __VA_ARGS__), exit(1))
-#define WARNING_(msg, ...) eprintf("%s: warning: " msg "\n", command, __VA_ARGS__)
-#define ERROR(...) ERROR_(__VA_ARGS__, NULL)
-#define WARNING(...) WARNING_(__VA_ARGS__, NULL)
-
+#define eprintf(...) fprintf(stderr, ##__VA_ARGS__)
+#define ERROR(msg, ...) eprintf("%s: error: " msg "\n", command, ##__VA_ARGS__),exit(1)
+#define WARNING(msg, ...) eprintf("%s: warning: " msg "\n", command, ##__VA_ARGS__)
#define f266ToInt(x) (((x)+32)>>6) // round fractional fixed point number to integer
// coordinates are in 26.6 pixels (i.e. 1/64th of pixels)
@@ -304,7 +301,7 @@
glyph_index = FT_Get_Char_Index(face, uni_charmap ? character:code);
if (glyph_index==0) {
WARNING("Glyph for char 0x%02lx|U+%04lX|%c not found.", code, character,
- code<' '||code>255 ? '.':code);
+ code<' '||code>255 ? '.':(char)code);
continue;
}
}
@@ -368,7 +365,7 @@
fprintf(f, "0x%04lx %i %i;\tU+%04lX|%c\n", unicode_desc ? character:code,
pen_x, // bitmap start
pen_xa-1, // bitmap end
- character, code<' '||code>255 ? '.':code);
+ character, code<' '||code>255 ? '.':(char)code);
#endif
pen_x = ALIGN(pen_xa);
}
More information about the MPlayer-cvslog
mailing list