Mercurial > libavformat.hg
changeset 3276:24284961452b libavformat
Use correct length modifier for pointer diff argument in av_log() call.
author | diego |
---|---|
date | Sun, 04 May 2008 10:35:13 +0000 |
parents | 1c55ed1a5044 |
children | ce8070648576 |
files | sdp.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/sdp.c Sun May 04 10:29:12 2008 +0000 +++ b/sdp.c Sun May 04 10:35:13 2008 +0000 @@ -123,7 +123,7 @@ 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;