From e9afa2f4dd9a1340c1538a580720864e90c83e3b Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Wed, 7 Apr 2004 13:27:53 +0000 Subject: [PATCH] unknown format char Originally committed as revision 2976 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/matroska.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/matroska.c b/libavformat/matroska.c index d36eb0c9cc..fee09f41d0 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -927,7 +927,7 @@ ebml_read_header (MatroskaDemuxContext *matroska, return res; if (num > sizeof(uint32_t)) { av_log(matroska->ctx, AV_LOG_ERROR, - "IDs of size %llu (> %zu) not supported\n", + "IDs of size %llu (> %u) not supported\n", num, sizeof(uint32_t)); return AVERROR_INVALIDDATA; }