summaryrefslogtreecommitdiff
path: root/range-diff.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2022-08-19 10:08:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-08-19 19:18:56 (GMT)
commit776515ef8b381d49caeccfe2e8da98cb666e257a (patch)
tree38b39abaa4242240ff41b66c7f64fef2a25e6244 /range-diff.c
parente5e056b21dc5c128b5349ac336c6315943e88dee (diff)
downloadgit-776515ef8b381d49caeccfe2e8da98cb666e257a.zip
git-776515ef8b381d49caeccfe2e8da98cb666e257a.tar.gz
git-776515ef8b381d49caeccfe2e8da98cb666e257a.tar.bz2
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>
Diffstat (limited to 'range-diff.c')
0 files changed, 0 insertions, 0 deletions