diff options
Diffstat (limited to 'src/thread/pthread_setcancelstate.c')
-rw-r--r-- | src/thread/pthread_setcancelstate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_setcancelstate.c b/src/thread/pthread_setcancelstate.c index 2268217d..822a1398 100644 --- a/src/thread/pthread_setcancelstate.c +++ b/src/thread/pthread_setcancelstate.c @@ -2,7 +2,7 @@ int __pthread_setcancelstate(int new, int *old) { - if (new > 1U) return EINVAL; + if (new > 2U) return EINVAL; if (!libc.has_thread_pointer) return ENOSYS; struct pthread *self = __pthread_self(); if (old) *old = self->canceldisable; |