diff options
| author | Jeff King <peff@peff.net> | 2022-10-17 21:05:32 -0400 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-10-17 21:24:04 -0700 |
| commit | 1ee347104576c8a2681edd79ed8328791f0677d2 (patch) | |
| tree | 550d2854f0b1e0467f435d12cdf6d0d3423cdf93 /archive.c | |
| parent | object-file: mark unused parameters in hash_unknown functions (diff) | |
| download | git-1ee347104576c8a2681edd79ed8328791f0677d2.tar.gz git-1ee347104576c8a2681edd79ed8328791f0677d2.zip | |
string-list: mark unused callback parameters
String-lists may be used with callbacks for clearing or iteration. These
callbacks need to conform to a particular interface, even though not
every callback needs all of its parameters. Mark the unused ones to make
-Wunused-parameter happy.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -500,7 +500,7 @@ static void parse_treeish_arg(const char **argv, ar_args->time = archive_time; } -static void extra_file_info_clear(void *util, const char *str) +static void extra_file_info_clear(void *util, const char *str UNUSED) { struct extra_file_info *info = util; free(info->base); |
