Skip to content

Commit

Permalink
Merge branch 'dt/http-range'
Browse files Browse the repository at this point in the history
Portability fix for a topic already in 'master'.

* dt/http-range:
  http: fix some printf format warnings
  • Loading branch information
Jeff King committed Dec 1, 2015
2 parents 40fdcc5 + 838ecf0 commit 23bc35f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions http.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 23bc35f

Please sign in to comment.