diff options
| author | Jeff King <peff@peff.net> | 2022-08-19 06:08:49 -0400 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-08-19 12:18:56 -0700 |
| commit | 555ff1c8a4fc3bf4beab0b5bb8774fd607f95111 (patch) | |
| tree | eb3641aac61e98cc6644318b853e67e8d317fcdf /archive.c | |
| parent | hashmap: mark unused callback parameters (diff) | |
| download | git-555ff1c8a4fc3bf4beab0b5bb8774fd607f95111.tar.gz git-555ff1c8a4fc3bf4beab0b5bb8774fd607f95111.zip | |
mark unused read_tree_recursive() callback parameters
We pass a callback to read_tree_recursive(), but not every callback
needs every parameter. Let's mark the unused ones to satisfy
-Wunused-parameter.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive.c')
| -rw-r--r-- | archive.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -382,7 +382,8 @@ struct path_exists_context { struct archiver_args *args; }; -static int reject_entry(const struct object_id *oid, struct strbuf *base, +static int reject_entry(const struct object_id *UNUSED(oid), + struct strbuf *base, const char *filename, unsigned mode, void *context) { |
