added missing return to why2_accept_thread

This commit is contained in:
Václav Šmejkal 2023-04-20 09:42:20 +02:00
parent 2d095daef2
commit 9630da569f
Signed by: ENGO150
GPG Key ID: F6D6DF86242C5A59

View File

@ -423,6 +423,8 @@ void *why2_accept_thread(void *socket)
pthread_create(&thread, NULL, why2_communicate_thread, &accepted); pthread_create(&thread, NULL, why2_communicate_thread, &accepted);
} }
return NULL;
} }
void why2_clean_threads(void) void why2_clean_threads(void)