diff options
author | Reimar Döffinger | 2011-05-07 19:28:45 +0200 |
---|---|---|
committer | Reimar Döffinger | 2011-05-07 20:14:47 +0200 |
commit | 8c3651f4a516a531a42e55e0bf4e83edb65a7b89 (patch) | |
tree | 247101dee41ebce9ecb41f4f0d13eab83d1501aa /libavformat/ape.c | |
parent | 7deaa2b8bddfae5d3a7121a76ff31a098b85389f (diff) |
Fix printf format string, fixes a warning.
Diffstat (limited to 'libavformat/ape.c')
-rw-r--r-- | libavformat/ape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ape.c b/libavformat/ape.c index d63b2ac40d..4b37c7972d 100644 --- a/libavformat/ape.c +++ b/libavformat/ape.c @@ -251,7 +251,7 @@ static int ape_read_header(AVFormatContext * s, AVFormatParameters * ap) return -1; } if (ape->seektablelength && (ape->seektablelength / sizeof(*ape->seektable)) < ape->totalframes) { - av_log(s, AV_LOG_ERROR, "Number of seek entries is less than number of frames: %d vs. %d\n", + av_log(s, AV_LOG_ERROR, "Number of seek entries is less than number of frames: %zd vs. %d\n", ape->seektablelength / sizeof(*ape->seektable), ape->totalframes); return AVERROR_INVALIDDATA; } |