Commit 3db0208c authored by Reimar Döffinger's avatar Reimar Döffinger

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

Originally committed as revision 20407 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 785d3c97
...@@ -38,7 +38,7 @@ void write_##name##_array(const void *arg, int len, int dummy)\ ...@@ -38,7 +38,7 @@ void write_##name##_array(const void *arg, int len, int dummy)\
} }
WRITE_1D_FUNC(int8, int8_t, "%3"PRIi8, 15) 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)\ #define WRITE_2D_FUNC(name, type)\
void write_##name##_2d_array(const void *arg, int len, int len2)\ void write_##name##_2d_array(const void *arg, int len, int len2)\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment