diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libthread/pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libthread/pthread.c b/src/libthread/pthread.c index 7404817d..46bb396a 100644 --- a/src/libthread/pthread.c +++ b/src/libthread/pthread.c @@ -148,7 +148,7 @@ _pthreadinit(void) * thread IDs. */ id = pthread_self(); - if(*(ulong*)&id < 1024*1024) + if(*(ulong*)(void*)&id < 1024*1024) sysfatal("cannot use LinuxThreads as pthread library; see %s/src/libthread/README.Linux", get9root()); } pthread_key_create(&prockey, 0); |