Commit 60bdc868 authored by Christophe Gisquet's avatar Christophe Gisquet Committed by Michael Niedermayer

lavf/mov: correct printf specifier

The type is int64_t.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0e699676
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment