From a55340608b3140b26888422f708d0a0834bae2d7 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 18 Sep 2020 20:29:24 +0200 Subject: psx_example_2: Fix warning --- posix_api/psx_example_2/test2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posix_api/psx_example_2/test2.c b/posix_api/psx_example_2/test2.c index b9df107..499e899 100644 --- a/posix_api/psx_example_2/test2.c +++ b/posix_api/psx_example_2/test2.c @@ -24,7 +24,7 @@ void * print_hello(void * arg) return NULL; } -int *POSIX_Init() +void *POSIX_Init(void *arg) { pthread_t child; if ( pthread_create( &child, NULL, print_hello, NULL )) -- cgit v1.2.3