[FFmpeg-cvslog] r20407 - trunk/libavcodec/tableprint.c

reimar subversion
Wed Oct 28 21:02:40 CET 2009


Author: reimar
Date: Wed Oct 28 21:02:40 2009
New Revision: 20407

Log:
Change format string from "x" to PRIx32 to hopefully fix a warning with Cygwin gcc 4.2.4.

Modified:
   trunk/libavcodec/tableprint.c

Modified: trunk/libavcodec/tableprint.c
==============================================================================
--- trunk/libavcodec/tableprint.c	Wed Oct 28 20:49:19 2009	(r20406)
+++ trunk/libavcodec/tableprint.c	Wed Oct 28 21:02:40 2009	(r20407)
@@ -38,7 +38,7 @@ void write_##name##_array(const void *ar
 }
 
 WRITE_1D_FUNC(int8,   int8_t,   "%3"PRIi8, 15)
-WRITE_1D_FUNC(uint32, uint32_t, "0x%08x",   7)
+WRITE_1D_FUNC(uint32, uint32_t, "0x%08"PRIx32, 7)
 
 #define WRITE_2D_FUNC(name, type)\
 void write_##name##_2d_array(const void *arg, int len, int len2)\



More information about the ffmpeg-cvslog mailing list