From cba4e6062a02d5bf684e13a770be88aa1fec717e Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 1 Apr 2014 18:19:59 +0000 Subject: More correct printf format specifiers This avoids compiler warnings about argument and specifier type mismatch. --- libavcodec/g2meet.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/g2meet.c') diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index fe0c9297b1..a741b6f0f2 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c @@ -770,7 +770,7 @@ static int g2m_decode_frame(AVCodecContext *avctx, void *data, break; } if (chunk_size < 2) { - av_log(avctx, AV_LOG_ERROR, "Invalid tile data size %d\n", + av_log(avctx, AV_LOG_ERROR, "Invalid tile data size %"PRIu32"\n", chunk_size); break; } @@ -821,7 +821,7 @@ static int g2m_decode_frame(AVCodecContext *avctx, void *data, case CHUNK_CD: break; default: - av_log(avctx, AV_LOG_WARNING, "Skipping chunk type %02"PRIX32"\n", + av_log(avctx, AV_LOG_WARNING, "Skipping chunk type %02d\n", chunk_type); } -- cgit v1.2.3