diff options
Diffstat (limited to 'fetch-pack.c')
| -rw-r--r-- | fetch-pack.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/fetch-pack.c b/fetch-pack.c index d35be4177b..bda9d0f433 100644 --- a/fetch-pack.c +++ b/fetch-pack.c @@ -176,8 +176,10 @@ static int rev_list_insert_ref(struct fetch_negotiator *negotiator, return 0; } -static int rev_list_insert_ref_oid(const char *refname, const struct object_id *oid, - int flag, void *cb_data) +static int rev_list_insert_ref_oid(const char *UNUSED(refname), + const struct object_id *oid, + int UNUSED(flag), + void *cb_data) { return rev_list_insert_ref(cb_data, oid); } @@ -580,8 +582,10 @@ static int mark_complete(const struct object_id *oid) return 0; } -static int mark_complete_oid(const char *refname, const struct object_id *oid, - int flag, void *cb_data) +static int mark_complete_oid(const char *UNUSED(refname), + const struct object_id *oid, + int UNUSED(flag), + void *UNUSED(cb_data)) { return mark_complete(oid); } |
