diff options
author | Jeff King <peff@peff.net> | 2015-12-01 18:54:28 -0500 |
---|---|---|
committer | Jeff King <peff@peff.net> | 2015-12-01 18:54:28 -0500 |
commit | 23bc35f3dc8b4241a9a6aa97db2a94d3c4c92468 (patch) | |
tree | d97b38936ff3a68ff1c80fce70d1a88048bc9e93 | |
parent | Merge branch 'maint' (diff) | |
parent | http: fix some printf format warnings (diff) | |
download | tgif-23bc35f3dc8b4241a9a6aa97db2a94d3c4c92468.tar.xz |
Merge branch 'dt/http-range'
Portability fix for a topic already in 'master'.
* dt/http-range:
http: fix some printf format warnings
-rw-r--r-- | http.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); } |