We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50141a6 commit cea3f5aCopy full SHA for cea3f5a
libretro/libretro-common/libco/ps2.c
@@ -31,7 +31,6 @@ cothread_t co_create(unsigned int size, void (*entrypoint)(void))
31
32
if ( threadStack== NULL)
33
{
34
- printf("libco: ERROR: creating threadStack\n");
35
return(-1);
36
}
37
@@ -43,8 +42,6 @@ cothread_t co_create(unsigned int size, void (*entrypoint)(void))
43
42
thread.initial_priority = 1;
44
45
int32_t new_thread_id = CreateThread(&thread);
46
- if (new_thread_id < 0)
47
- printf("libco: ERROR: creating thread\n");
48
49
StartThread(new_thread_id, NULL);
50
*(uint32_t *)handle = new_thread_id;
0 commit comments