]> git.ipfire.org Git - thirdparty/git.git/commit
is_path_owned_by_current_uid(): mark "report" parameter as unused
authorJeff King <peff@peff.net>
Fri, 19 Aug 2022 10:08:54 +0000 (06:08 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 19 Aug 2022 19:18:56 +0000 (12:18 -0700)
commit776515ef8b381d49caeccfe2e8da98cb666e257a
tree38b39abaa4242240ff41b66c7f64fef2a25e6244
parente5e056b21dc5c128b5349ac336c6315943e88dee
is_path_owned_by_current_uid(): mark "report" parameter as unused

In the non-Windows version of this function, we never have any errors to
report, and thus the "report" parameter is unused. But we can't drop it,
because we have to maintain function call compatibility with the version
in compat/mingw.h, which does use this parameter.

Note that there's an extra level of indirection here; the common
function is actually is_path_owned_by_current_user, which is a macro
pointing to "by_current_uid" or "by_current_sid", depending on the
platform. So an alternative here is to eat the unused parameter in the
macro, since -Wunused-parameter doesn't complain about macros. But I
think the UNUSED() annotation is less obfuscated for somebody reading
the code later.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-compat-util.h