summaryrefslogtreecommitdiff
path: root/src/errno
diff options
context:
space:
mode:
Diffstat (limited to 'src/errno')
-rw-r--r--src/errno/__errno_location.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errno/__errno_location.c b/src/errno/__errno_location.c
index 84191076..49654efd 100644
--- a/src/errno/__errno_location.c
+++ b/src/errno/__errno_location.c
@@ -3,6 +3,6 @@
int *__errno_location(void)
{
static int e;
- if (libc.has_thread_pointer) return __pthread_self()->errno_ptr;
+ if (libc.has_thread_pointer) return &__pthread_self()->errno_val;
return &e;
}