Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2015-12-02 02:54:28 +0300
committerJeff King <peff@peff.net>2015-12-02 02:54:28 +0300
commit23bc35f3dc8b4241a9a6aa97db2a94d3c4c92468 (patch)
treed97b38936ff3a68ff1c80fce70d1a88048bc9e93 /http.c
parent40fdcc535783f5c64e6aba9f4b2d2c8997c55a8d (diff)
parent838ecf0b0f0c66d137065303231e04f85c74c5e3 (diff)
Merge branch 'dt/http-range'
Portability fix for a topic already in 'master'. * dt/http-range: http: fix some printf format warnings
Diffstat (limited to 'http.c')
-rw-r--r--http.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/http.c b/http.c
index 553d85674a..7d4cb2d448 100644
--- a/http.c
+++ b/http.c
@@ -1628,8 +1628,8 @@ struct http_pack_request *new_http_pack_request(
if (prev_posn>0) {
if (http_is_verbose)
fprintf(stderr,
- "Resuming fetch of pack %s at byte %ld\n",
- sha1_to_hex(target->sha1), prev_posn);
+ "Resuming fetch of pack %s at byte %"PRIuMAX"\n",
+ sha1_to_hex(target->sha1), (uintmax_t)prev_posn);
http_opt_request_remainder(preq->slot->curl, prev_posn);
}
@@ -1783,8 +1783,8 @@ struct http_object_request *new_http_object_request(const char *base_url,
if (prev_posn>0) {
if (http_is_verbose)
fprintf(stderr,
- "Resuming fetch of object %s at byte %ld\n",
- hex, prev_posn);
+ "Resuming fetch of object %s at byte %"PRIuMAX"\n",
+ hex, (uintmax_t)prev_posn);
http_opt_request_remainder(freq->slot->curl, prev_posn);
}