From: Jeff King Date: Fri, 24 Feb 2023 06:39:43 +0000 (-0500) Subject: userformat_want_item(): mark unused parameter X-Git-Tag: v2.41.0-rc0~163^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1bff855419b0cb338e7ef53b77f99207704bf63e;p=thirdparty%2Fgit.git userformat_want_item(): mark unused parameter This function is used as a callback to strbuf_expand(), so it must conform to the correct interface. But naturally it doesn't need to touch its "sb" parameter, since it is only examining the placeholder string, and not actually writing any output. So mark the unused parameter to silence -Wunused-parameter. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/pretty.c b/pretty.c index 1e1e21878c..2e47292407 100644 --- a/pretty.c +++ b/pretty.c @@ -1857,7 +1857,8 @@ static size_t format_commit_item(struct strbuf *sb, /* in UTF-8 */ return consumed + 1; } -static size_t userformat_want_item(struct strbuf *sb, const char *placeholder, +static size_t userformat_want_item(struct strbuf *sb UNUSED, + const char *placeholder, void *context) { struct userformat_want *w = context;