summaryrefslogtreecommitdiff
path: root/libavcodec/dv_tablegen.c
diff options
context:
space:
mode:
authordsmudhar <ds.mudhar@gmail.com>2016-05-22 06:16:56 +0530
committerMichael Niedermayer <michael@niedermayer.cc>2016-05-24 20:47:03 +0200
commit49640ae315abf2f38df368763fd753383a1381e4 (patch)
tree4f4a7f96c4a13f2834a2cd5cf070eef850057a97 /libavcodec/dv_tablegen.c
parent04d35004c3d050c0bede909e4d1b30f0dc379cfa (diff)
downloadffmpeg-49640ae315abf2f38df368763fd753383a1381e4.tar.gz
libavcodec/dv_tablegen: fixed wrong printf format
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/dv_tablegen.c')
-rw-r--r--libavcodec/dv_tablegen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv_tablegen.c b/libavcodec/dv_tablegen.c
index 257934101a..d032101511 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)