summaryrefslogtreecommitdiff
path: root/libavformat/sdp.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-05-04 10:35:13 +0000
committerDiego Biurrun <diego@biurrun.de>2008-05-04 10:35:13 +0000
commit4b13335d1cd9b82a01139f6a2aeb55ace5419955 (patch)
tree66c961d615b977d14d9088563012451fe219b39b /libavformat/sdp.c
parentd6f142a1f8e77fb73263ba9c204ad2314951b9e3 (diff)
Use correct length modifier for pointer diff argument in av_log() call.
Originally committed as revision 13057 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/sdp.c')
-rw-r--r--libavformat/sdp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sdp.c b/libavformat/sdp.c
index bddfcd6138..7592aec3be 100644
--- a/libavformat/sdp.c
+++ b/libavformat/sdp.c
@@ -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;