From 95a72aed764aa8a08c56ba0e8cf5153f5b769222 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Fri, 17 Mar 2017 15:29:51 -0400 Subject: [PATCH] mov: Drop extra format specifier in error message --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }