]> git.ipfire.org Git - thirdparty/git.git/commitdiff
reftable/fsck: use REFTABLE_UNUSED instead of UNUSED
authorPatrick Steinhardt <ps@pks.im>
Thu, 2 Apr 2026 07:31:16 +0000 (09:31 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 2 Apr 2026 17:45:43 +0000 (10:45 -0700)
While we have the reftable-specific `REFTABLE_UNUSED` header, we
accidentally introduced a new usage of the Git-specific `UNUSED` header
into the reftable library in 9051638519 (reftable: add code to
facilitate consistency checks, 2025-10-07).

Convert the site to use `REFTABLE_UNUSED`.

Ideally, we'd move the definition of `UNUSED` into "git-compat-util.h"
so that it becomes in accessible to the reftable library. But this is
unfortunately not easily possible as "compat/mingw-posix.h" requires
this macro, and this header is included by "compat/posix.h".

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
reftable/fsck.c

index 26b9115b14acd8806bc73e8d242824bd6772a5a3..8e73fc83f225e55acfa96089e6688112974c730e 100644 (file)
@@ -63,7 +63,7 @@ static int table_check_name(struct reftable_table *table,
 
 static int table_checks(struct reftable_table *table,
                        reftable_fsck_report_fn report_fn,
-                       reftable_fsck_verbose_fn verbose_fn UNUSED,
+                       reftable_fsck_verbose_fn verbose_fn REFTABLE_UNUSED,
                        void *cb_data)
 {
        table_check_fn table_check_fns[] = {