summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2017-03-17 15:29:51 -0400
committerVittorio Giovara <vittorio.giovara@gmail.com>2017-03-17 15:30:11 -0400
commit95a72aed764aa8a08c56ba0e8cf5153f5b769222 (patch)
tree28c598947c90ba49b36fea8a43cd1f4dc1560c81
parentf20bcec4c2b1c2a57ed89e5be1ac2e0db1bc62b4 (diff)
mov: Drop extra format specifier in error message
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 5e7be49563..f7dd2502c5 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -4715,7 +4715,7 @@ static int mov_read_sv3d(MOVContext *c, AVIOContext *pb, MOVAtom atom)
if (b >= UINT_MAX - t || r >= UINT_MAX - l) {
av_log(c->fc, AV_LOG_ERROR,
- "Invalid bounding rectangle coordinates %"SIZE_SPECIFIER","
+ "Invalid bounding rectangle coordinates "
"%"PRIu32",%"PRIu32",%"PRIu32",%"PRIu32"\n", l, t, r, b);
return AVERROR_INVALIDDATA;
}