summaryrefslogtreecommitdiff
path: root/libavformat/matroska.c
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2004-04-07 13:27:53 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2004-04-07 13:27:53 +0000
commite9afa2f4dd9a1340c1538a580720864e90c83e3b (patch)
tree8ccea32e10efe1f3be22f1c6143baac87f74fa7b /libavformat/matroska.c
parentfd1467581cfd39d517424ed65b8f0b856eee4792 (diff)
unknown format char
Originally committed as revision 2976 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r--libavformat/matroska.c2
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;
}