mirror of https://git.ffmpeg.org/ffmpeg.git
libavcodec/dv_tablegen: fixed wrong printf format
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
04d35004c3
commit
49640ae315
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue