Commit fb3429d7 authored by diego's avatar diego

Use correct length modifier for pointer diff argument in av_log() call.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13057 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1f8b35dd
......@@ -123,7 +123,7 @@ static char *extradata2psets(AVCodecContext *c)
p++;
}
if (av_base64_encode(p, MAX_PSET_SIZE - (p - psets), r, r1 - r) == NULL) {
av_log(c, AV_LOG_ERROR, "Cannot BASE64 encode %d %d!\n", MAX_PSET_SIZE - (p - psets), r1 - r);
av_log(c, AV_LOG_ERROR, "Cannot BASE64 encode %td %td!\n", MAX_PSET_SIZE - (p - psets), r1 - r);
av_free(psets);
return NULL;
......
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