Mercurial > mplayer.hg
diff stream/http.c @ 33841:25667edae85c
cleanup: adjust printf format strings to match parameter types
This eliminates a bunch of related compiler warnings.
| author | diego |
|---|---|
| date | Wed, 27 Jul 2011 13:40:06 +0000 |
| parents | 1afbc8e3ff55 |
| children | 9c695b52687e |
line wrap: on
line diff
--- a/stream/http.c Wed Jul 27 13:40:00 2011 +0000 +++ b/stream/http.c Wed Jul 27 13:40:06 2011 +0000 @@ -674,7 +674,7 @@ mp_msg(MSGT_NETWORK,MSGL_V,"method: [%s]\n", http_hdr->method ); mp_msg(MSGT_NETWORK,MSGL_V,"status code: [%d]\n", http_hdr->status_code ); mp_msg(MSGT_NETWORK,MSGL_V,"reason phrase: [%s]\n", http_hdr->reason_phrase ); - mp_msg(MSGT_NETWORK,MSGL_V,"body size: [%zd]\n", http_hdr->body_size ); + mp_msg(MSGT_NETWORK,MSGL_V,"body size: [%zu]\n", http_hdr->body_size ); mp_msg(MSGT_NETWORK,MSGL_V,"Fields:\n"); field = http_hdr->first_field;
