From a77346cc5ad9f69bbc8426342efc60f171f1a4a4 Mon Sep 17 00:00:00 2001 From: The Arrayser <68914060+TheArrayser@users.noreply.github.com> Date: Tue, 30 Aug 2022 13:42:25 +0200 Subject: [PATCH] void --- tests/System Abstraction/5/threadsTest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/System Abstraction/5/threadsTest.c b/tests/System Abstraction/5/threadsTest.c index 19864f4..52a1cd4 100644 --- a/tests/System Abstraction/5/threadsTest.c +++ b/tests/System Abstraction/5/threadsTest.c @@ -1,7 +1,7 @@ #include "../../../System Abstraction/cdb_sustem.h" #include -__attribute__ ((sysv_abi)) int testProc(void * arg){ +__attribute__ ((sysv_abi)) void testProc(void * arg){ printf("in testProc ... Going to sleep, %i\n", *(int *)arg); sus_threadSleep(5); printf("after sleeping in testProc\n");