[FFmpeg-cvslog] lavf/mov: correct printf specifier

Christophe Gisquet git at videolan.org
Fri Feb 27 17:42:59 CET 2015


ffmpeg | branch: master | Christophe Gisquet <christophe.gisquet at gmail.com> | Fri Feb 27 16:10:38 2015 +0100| [60bdc868b9c291e4fdd58004d0c839719c23902e] | committer: Michael Niedermayer

lavf/mov: correct printf specifier

The type is int64_t.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=60bdc868b9c291e4fdd58004d0c839719c23902e
---

 libavformat/mov.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 5ff753d..286f368 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1236,7 +1236,7 @@ static int mov_read_aclr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
                 av_log(c, AV_LOG_ERROR, "aclr not decoded - unable to add atom to extradata\n");
             }
         } else {
-            av_log(c, AV_LOG_WARNING, "aclr not decoded - unexpected size %ld\n", atom.size);
+            av_log(c, AV_LOG_WARNING, "aclr not decoded - unexpected size %"PRId64"\n", atom.size);
         }
     }
 



More information about the ffmpeg-cvslog mailing list