Commit 49640ae3 authored by dsmudhar's avatar dsmudhar Committed by Michael Niedermayer

libavcodec/dv_tablegen: fixed wrong printf format

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 04d35004
......@@ -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)
......
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