diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2008-03-02 21:34:36 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-03-03 00:05:45 -0800 |
commit | ff655a69df524c71464968f823a4826f2d43d7c6 (patch) | |
tree | 1115ba6c9b22dbcf4d354787922083158c0a03c0 /builtin-fetch.c | |
parent | 2d3539e87a75b5f93f9e53bf13a60ef67a28ea62 (diff) | |
download | git-ff655a69df524c71464968f823a4826f2d43d7c6.tar.gz |
Remove unused variable in builtin-fetch find_non_local_tags
Apparently fetch_map is passed through, but is not actually used.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-fetch.c')
-rw-r--r-- | builtin-fetch.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/builtin-fetch.c b/builtin-fetch.c index ac335f20fe..f8b9542ba6 100644 --- a/builtin-fetch.c +++ b/builtin-fetch.c @@ -452,8 +452,7 @@ static int add_existing(const char *refname, const unsigned char *sha1, return 0; } -static struct ref *find_non_local_tags(struct transport *transport, - struct ref *fetch_map) +static struct ref *find_non_local_tags(struct transport *transport) { static struct path_list existing_refs = { NULL, 0, 0, 0 }; struct path_list new_refs = { NULL, 0, 0, 1 }; @@ -547,7 +546,7 @@ static int do_fetch(struct transport *transport, /* if neither --no-tags nor --tags was specified, do automated tag * following ... */ if (tags == TAGS_DEFAULT && autotags) { - ref_map = find_non_local_tags(transport, fetch_map); + ref_map = find_non_local_tags(transport); if (ref_map) { transport_set_option(transport, TRANS_OPT_DEPTH, "0"); fetch_refs(transport, ref_map); |