From c0e625ea5d47d32110dae6b1cf7671060e5c47bf Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 18 Nov 2023 22:59:56 +0000 Subject: Fix trypthread.c to work with old compilers Signed-off-by: Laurent Bercot --- src/sysdeps/trypthread.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sysdeps/trypthread.c b/src/sysdeps/trypthread.c index 8e2e459..37cb339 100644 --- a/src/sysdeps/trypthread.c +++ b/src/sysdeps/trypthread.c @@ -3,8 +3,9 @@ #include #include -void *pstart (void *) +void *pstart (void *arg) { + (void)arg ; return 0 ; } -- cgit v1.2.3