1
0
mirror of https://github.com/fumiama/simple-http-server.git synced 2026-06-05 00:30:23 +08:00
This commit is contained in:
源文雨
2022-03-05 18:34:21 +08:00
parent e3ba9f336c
commit 748aa6b5ec

View File

@@ -549,7 +549,7 @@ static int accept_client(int is_unix_sock) {
}
pthread_t accept_thread;
if(pthread_create(&accept_thread, &attr, &accept_request, client_sock) != 0) perror("pthread_create");
printf("Created new thread at 0x%p\n", (void*)accept_thread);
printf("Created new thread at %p\n", (void*)accept_thread);
}
}