diff options
author | Guillaume Poirier | 2007-01-25 10:01:28 +0000 |
---|---|---|
committer | Guillaume Poirier | 2007-01-25 10:01:28 +0000 |
commit | 706c0d65095f2e7f2f15833cb8bcf59f30c29e28 (patch) | |
tree | d2acd43744d80993db16041ab3c9603fbc57f247 /libavformat | |
parent | aadcc5cecde7311871858d18c75fad9b463aca2d (diff) |
use more portable PRIu64
Originally committed as revision 7707 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c index 0a588871bb..63cdb34530 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -222,7 +222,7 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr, "%s %s HTTP/1.1\r\n" "User-Agent: %s\r\n" "Accept: */*\r\n" - "Range: bytes=%llu-\r\n" + "Range: bytes=%"PRId64"-\r\n" "Host: %s\r\n" "Authorization: Basic %s\r\n" "\r\n", |