]> git.sesse.net Git - ffmpeg/commitdiff
mov: Drop extra format specifier in error message
authorVittorio Giovara <vittorio.giovara@gmail.com>
Fri, 17 Mar 2017 19:29:51 +0000 (15:29 -0400)
committerVittorio Giovara <vittorio.giovara@gmail.com>
Fri, 17 Mar 2017 19:30:11 +0000 (15:30 -0400)
libavformat/mov.c

index 5e7be495632bd18c438d7e906451ad409483a6e2..f7dd2502c5a68bf11194b324bd127964092882a7 100644 (file)
@@ -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;
         }