[FFmpeg-cvslog] r13057 - trunk/libavformat/sdp.c
diego
subversion
Sun May 4 12:35:14 CEST 2008
Author: diego
Date: Sun May 4 12:35:13 2008
New Revision: 13057
Log:
Use correct length modifier for pointer diff argument in av_log() call.
Modified:
trunk/libavformat/sdp.c
Modified: trunk/libavformat/sdp.c
==============================================================================
--- trunk/libavformat/sdp.c (original)
+++ trunk/libavformat/sdp.c Sun May 4 12:35:13 2008
@@ -123,7 +123,7 @@ static char *extradata2psets(AVCodecCont
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;
More information about the ffmpeg-cvslog
mailing list