diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-04 10:35:13 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-04 10:35:13 +0000 |
commit | 4b13335d1cd9b82a01139f6a2aeb55ace5419955 (patch) | |
tree | 66c961d615b977d14d9088563012451fe219b39b /libavformat/sdp.c | |
parent | d6f142a1f8e77fb73263ba9c204ad2314951b9e3 (diff) | |
download | ffmpeg-4b13335d1cd9b82a01139f6a2aeb55ace5419955.tar.gz |
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.c | 2 |
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; |