diff options
author | Yang Tse <yangsita@gmail.com> | 2013-07-24 16:43:13 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2013-07-24 16:46:24 +0200 |
commit | 4fad1943a256fcfbbb74603ba22fe7377e59e003 (patch) | |
tree | 534631327cf317970d0cf6dc093dfc73fa5ad435 /lib/rtsp.c | |
parent | 4d346673a267c7111c667d5fe2962db09df506d4 (diff) | |
download | curl-4fad1943a256fcfbbb74603ba22fe7377e59e003.tar.gz |
string formatting: fix 15+ printf-style format strings
Diffstat (limited to 'lib/rtsp.c')
-rw-r--r-- | lib/rtsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rtsp.c b/lib/rtsp.c index 9d7a9a94b..3dc14901b 100644 --- a/lib/rtsp.c +++ b/lib/rtsp.c @@ -668,7 +668,7 @@ static CURLcode rtsp_rtp_readwrite(struct SessionHandle *data, } if(rtp_dataleft != 0 && rtp[0] == '$') { - DEBUGF(infof(data, "RTP Rewinding %zu %s\n", rtp_dataleft, + DEBUGF(infof(data, "RTP Rewinding %zd %s\n", rtp_dataleft, *readmore ? "(READMORE)" : "")); /* Store the incomplete RTP packet for a "rewind" */ |