summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/thread/pthread_create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c
index cdf36ff2..284b45a0 100644
--- a/src/thread/pthread_create.c
+++ b/src/thread/pthread_create.c
@@ -195,7 +195,7 @@ int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(vo
unsigned char *map, *stack, *tsd;
static const pthread_attr_t default_attr;
- if (!self) return errno = ENOSYS;
+ if (!self) return ENOSYS;
if (!init && ++init) init_threads();
if (!attr) attr = &default_attr;