aboutsummaryrefslogtreecommitdiffstats
path: root/compat
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-10-27 14:51:52 -0700
committerJunio C Hamano <gitster@pobox.com>2022-10-27 14:51:52 -0700
commit220604042cb222019e7779287ab73615d7869376 (patch)
tree046dd7f16674322480c142016aa164fbdfb3ecb0 /compat
parent99bb1a0bea02c6dc78b6d8a1b219c687d792bf16 (diff)
parent4b992f0a24ad884eb43898cbb468fdf8fbe647bb (diff)
downloadgit-220604042cb222019e7779287ab73615d7869376.tar.gz
Merge branch 'jk/unused-anno-more'
More UNUSED annotation to help using -Wunused option with the compiler. * jk/unused-anno-more: ll-merge: mark unused parameters in callbacks diffcore-pickaxe: mark unused parameters in pickaxe functions convert: mark unused parameter in null stream filter apply: mark unused parameters in noop error/warning routine apply: mark unused parameters in handlers date: mark unused parameters in handler functions string-list: mark unused callback parameters object-file: mark unused parameters in hash_unknown functions mark unused parameters in trivial compat functions update-index: drop unused argc from do_reupdate() submodule--helper: drop unused argc from module_list_compute() diffstat_consume(): assert non-zero length
Diffstat (limited to 'compat')
-rw-r--r--compat/nonblock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/nonblock.c b/compat/nonblock.c
index 9694ebdb1d..5b51195c32 100644
--- a/compat/nonblock.c
+++ b/compat/nonblock.c
@@ -41,7 +41,7 @@ int enable_pipe_nonblock(int fd)
#else
-int enable_pipe_nonblock(int fd)
+int enable_pipe_nonblock(int fd UNUSED)
{
errno = ENOSYS;
return -1;