diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2004-04-07 13:27:53 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2004-04-07 13:27:53 +0000 |
commit | e9afa2f4dd9a1340c1538a580720864e90c83e3b (patch) | |
tree | 8ccea32e10efe1f3be22f1c6143baac87f74fa7b | |
parent | fd1467581cfd39d517424ed65b8f0b856eee4792 (diff) | |
download | ffmpeg-e9afa2f4dd9a1340c1538a580720864e90c83e3b.tar.gz |
unknown format char
Originally committed as revision 2976 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/matroska.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |