From: Jeff King Date: Tue, 18 Nov 2025 09:11:56 +0000 (-0500) Subject: compat/mmap: mark unused argument in git_munmap() X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=65e8141f051401a101567b95860424d94f42ef39;p=thirdparty%2Fgit.git compat/mmap: mark unused argument in git_munmap() Our mmap compat code emulates mapping by using malloc/free. Our git_munmap() must take a "length" parameter to match the interface of munmap(), but we don't use it (it is up to the allocator to know how big the block is in free()). Let's mark it as UNUSED to avoid complaints from -Wunused-parameter. Otherwise you cannot build with "make DEVELOPER=1 NO_MMAP=1". Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/compat/mmap.c b/compat/mmap.c index 2fe1c7732e..1a118711f7 100644 --- a/compat/mmap.c +++ b/compat/mmap.c @@ -38,7 +38,7 @@ void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t of return start; } -int git_munmap(void *start, size_t length) +int git_munmap(void *start, size_t length UNUSED) { free(start); return 0;