Use ISO C printf conversion specifiers where appropriate

This commit is contained in:
Diego Biurrun
2015-12-11 17:29:11 +01:00
parent fbe425c8d2
commit c454dfcff9
10 changed files with 48 additions and 35 deletions

View File

@@ -182,7 +182,7 @@ static int build_table(VLC *vlc, int table_nb_bits, int nb_codes,
n = codes[i].bits;
code = codes[i].code;
symbol = codes[i].symbol;
ff_dlog(NULL, "i=%d n=%d code=0x%x\n", i, n, code);
ff_dlog(NULL, "i=%d n=%d code=0x%"PRIx32"\n", i, n, code);
if (n <= table_nb_bits) {
/* no need to add another table */
j = code >> (32 - table_nb_bits);