Skip to content

Commit

Permalink
rev_list_insert_ref(): remove unneeded arguments
Browse files Browse the repository at this point in the history
Now that the function is not being used as an each_ref_sha1_fn, we can
delete the unused arguments in its signature.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed May 25, 2015
1 parent b1b49c6 commit c38cd1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fetch-pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static void rev_list_push(struct commit *commit, int mark)
}
}

static int rev_list_insert_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
static int rev_list_insert_ref(const char *refname, const unsigned char *sha1)
{
struct object *o = deref_tag(parse_object(sha1), refname, 0);

Expand All @@ -73,7 +73,7 @@ static int rev_list_insert_ref(const char *refname, const unsigned char *sha1, i
static int rev_list_insert_ref_oid(const char *refname, const struct object_id *oid,
int flag, void *cb_data)
{
return rev_list_insert_ref(refname, oid->hash, flag, cb_data);
return rev_list_insert_ref(refname, oid->hash);
}

static int clear_marks(const char *refname, const struct object_id *oid,
Expand Down Expand Up @@ -233,7 +233,7 @@ static void send_request(struct fetch_pack_args *args,

static void insert_one_alternate_ref(const struct ref *ref, void *unused)
{
rev_list_insert_ref(NULL, ref->old_sha1, 0, NULL);
rev_list_insert_ref(NULL, ref->old_sha1);
}

#define INITIAL_FLUSH 16
Expand Down

0 comments on commit c38cd1c

Please sign in to comment.