diff options
Diffstat (limited to 'tests-clar/attr/repo.c')
-rw-r--r-- | tests-clar/attr/repo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests-clar/attr/repo.c b/tests-clar/attr/repo.c index 9f6a49bf4..2afea23d6 100644 --- a/tests-clar/attr/repo.c +++ b/tests-clar/attr/repo.c @@ -104,12 +104,12 @@ void test_attr_repo__get_many(void) } static int count_attrs( - const char *GIT_UNUSED(name), - const char *GIT_UNUSED(value), + const char *name, + const char *value, void *payload) { - GIT_UNUSED_ARG(name); - GIT_UNUSED_ARG(value); + GIT_UNUSED(name); + GIT_UNUSED(value); *((int *)payload) += 1; |