projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6f142a
)
Use correct length modifier for pointer diff argument in av_log() call.
author
Diego Biurrun
<diego@biurrun.de>
Sun, 4 May 2008 10:35:13 +0000
(10:35 +0000)
committer
Diego Biurrun
<diego@biurrun.de>
Sun, 4 May 2008 10:35:13 +0000
(10:35 +0000)
Originally committed as revision 13057 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/sdp.c
patch
|
blob
|
history
diff --git
a/libavformat/sdp.c
b/libavformat/sdp.c
index
bddfcd6
..
7592aec
100644
(file)
--- 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 %t
d!\n", MAX_PSET_SIZE - (p - psets), r1 - r);
av_free(psets);
return NULL;