diff options
author | Eric Wong <e@80x24.org> | 2016-07-11 20:51:29 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-12 15:17:41 -0700 |
commit | 43b8bba6b60aa644456d7682b99357dd4778e8d6 (patch) | |
tree | 58aa9c3d1fa1dbdc8c1bce4ea0117f1b5774c403 /http-walker.c | |
parent | 05219a1276341e72d8082d76b7f5ed394b7437a4 (diff) | |
download | git-43b8bba6b60aa644456d7682b99357dd4778e8d6.tar.gz |
http-walker: remove unused parameter from fetch_object
This parameter has not been used since commit 1d389ab65dc6
("Add support for parallel HTTP transfers") back in 2005
Signed-off-by: Eric Wong <e@80x24.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http-walker.c')
-rw-r--r-- | http-walker.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/http-walker.c b/http-walker.c index 2c721f0c30..9f28523a07 100644 --- a/http-walker.c +++ b/http-walker.c @@ -447,7 +447,7 @@ static void abort_object_request(struct object_request *obj_req) release_object_request(obj_req); } -static int fetch_object(struct walker *walker, struct alt_base *repo, unsigned char *sha1) +static int fetch_object(struct walker *walker, unsigned char *sha1) { char *hex = sha1_to_hex(sha1); int ret = 0; @@ -518,7 +518,7 @@ static int fetch(struct walker *walker, unsigned char *sha1) struct walker_data *data = walker->data; struct alt_base *altbase = data->alt; - if (!fetch_object(walker, altbase, sha1)) + if (!fetch_object(walker, sha1)) return 0; while (altbase) { if (!http_fetch_pack(walker, altbase, sha1)) |