diff options
Diffstat (limited to 'tests/test_main.c')
-rw-r--r-- | tests/test_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_main.c b/tests/test_main.c index 732d25a9d..50256e97c 100644 --- a/tests/test_main.c +++ b/tests/test_main.c @@ -70,12 +70,12 @@ int __cdecl #else int #endif -main(int GIT_UNUSED(argc), char *GIT_UNUSED(argv[])) +main(int argc, char *argv[]) { unsigned int i, failures; - GIT_UNUSED_ARG(argc); - GIT_UNUSED_ARG(argv); + GIT_UNUSED(argc); + GIT_UNUSED(argv); git_threads_init(); |