[FFmpeg-cvslog] libavcodec/dv_tablegen: fixed wrong printf format
dsmudhar
git at videolan.org
Tue May 24 20:59:04 CEST 2016
ffmpeg | branch: master | dsmudhar <ds.mudhar at gmail.com> | Sun May 22 06:34:56 2016 +0530| [49640ae315abf2f38df368763fd753383a1381e4] | committer: Michael Niedermayer
libavcodec/dv_tablegen: fixed wrong printf format
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=49640ae315abf2f38df368763fd753383a1381e4
---
libavcodec/dv_tablegen.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/dv_tablegen.c b/libavcodec/dv_tablegen.c
index 2579341..d032101 100644
--- a/libavcodec/dv_tablegen.c
+++ b/libavcodec/dv_tablegen.c
@@ -27,7 +27,7 @@
#include <inttypes.h>
WRITE_1D_FUNC_ARGV(dv_vlc_pair, 7,
- "{0x%"PRIx32", %"PRId8"}", data[i].vlc, data[i].size)
+ "{0x%"PRIx32", %"PRIu32"}", data[i].vlc, data[i].size)
WRITE_2D_FUNC(dv_vlc_pair)
int main(void)
More information about the ffmpeg-cvslog
mailing list