From 6b9990c059336db43baaea2bfb312aa315f085c5 Mon Sep 17 00:00:00 2001 From: chrchr Date: Wed, 31 Jan 2024 12:59:55 +0100 Subject: [PATCH] parameter name --- test/cfg/posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cfg/posix.c b/test/cfg/posix.c index eaab9683d63..18400eff3c2 100644 --- a/test/cfg/posix.c +++ b/test/cfg/posix.c @@ -1023,7 +1023,7 @@ void nullPointer(char *p, int fd, pthread_mutex_t mutex) pthread_mutex_unlock(NULL); } -void* f_returns_NULL(void*) +void* f_returns_NULL(void* arg) { return NULL; }