diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-09 05:49:25 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-09 05:49:25 +0200 |
commit | 5d36e8527f08eeda5874dd27af133752015a01bf (patch) | |
tree | 4c99311bb6aef81668d9438df72b2e608ad5dc96 | |
parent | 8cfb9ccfef5fb0b827999a5a356a9e1cf4505bb0 (diff) | |
download | ffmpeg-5d36e8527f08eeda5874dd27af133752015a01bf.tar.gz |
avformat/mov: Fix 'warning: format specifies type unsigned short but the argument has type int'
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 4e1ef97fb7..d040918d59 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -937,7 +937,7 @@ static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom) color_trc = avio_rb16(pb); color_matrix = avio_rb16(pb); - av_dlog(c->fc, "%s: pri %"PRIu16" trc %"PRIu16" matrix %"PRIu16"", + av_dlog(c->fc, "%s: pri %d trc %d matrix %d", color_parameter_type, color_primaries, color_trc, color_matrix); if (c->isom) { |