fix fputwc return value
[oweals/musl.git] / src / time / timer_gettime.c
index 2320873eecf22c06f8cc30735e7b2df82e74239a..5a85821894cfa57b6728ee207e3a90d2a9c3a1b7 100644 (file)
@@ -3,7 +3,6 @@
 
 int timer_gettime(timer_t t, struct itimerspec *val)
 {
-       if ((uintptr_t)t & 1) t = (void *)((unsigned long)t / 2);
-       else t = ((pthread_t)t)->result;
+       if ((uintptr_t)t >= 0x100000) t = ((pthread_t)t)->result;
        return syscall(SYS_timer_gettime, (long)t, val);
 }