From 706c0d65095f2e7f2f15833cb8bcf59f30c29e28 Mon Sep 17 00:00:00 2001 From: Guillaume Poirier Date: Thu, 25 Jan 2007 10:01:28 +0000 Subject: [PATCH] use more portable PRIu64 Originally committed as revision 7707 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/http.c b/libavformat/http.c index 0a58887..63cdb34 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", -- 2.7.4