commit 46cfcf550f190fdef3496ae81d52c621862d01b1
parent 3842363abcf0fba2701a960d03ab5e9a24cafc8c
Author: rsc <devnull@localhost>
Date: Thu, 3 Feb 2005 15:41:39 +0000
stupid gcc
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);