[Ffmpeg-cvslog] CVS: ffmpeg/libavutil common.h,1.154,1.155
François Revol CVS
mmu_man
Tue Dec 6 00:14:58 CET 2005
Update of /cvsroot/ffmpeg/ffmpeg/libavutil
In directory mail:/var2/tmp/cvs-serv2295/libavutil
Modified Files:
common.h
Log Message:
fix for systems not defining PRIu64, not everyone knows C99.
Index: common.h
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavutil/common.h,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -d -r1.154 -r1.155
--- common.h 1 Dec 2005 18:20:15 -0000 1.154
+++ common.h 5 Dec 2005 23:14:55 -0000 1.155
@@ -104,6 +104,10 @@
# endif /* other OS */
#endif /* EMULATE_INTTYPES */
+#ifndef PRIu64
+#define PRIu64 "lld"
+#endif
+
#ifndef INT16_MIN
#define INT16_MIN (-0x7fff-1)
#endif
More information about the ffmpeg-cvslog
mailing list