diff options
Diffstat (limited to 'lib/libpthread/thread/thr_seterrno.c')
-rw-r--r-- | lib/libpthread/thread/thr_seterrno.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_seterrno.c b/lib/libpthread/thread/thr_seterrno.c index 4f585ac..245d43f 100644 --- a/lib/libpthread/thread/thr_seterrno.c +++ b/lib/libpthread/thread/thr_seterrno.c @@ -47,7 +47,7 @@ void _thread_seterrno(pthread_t thread, int error) { /* Check for the initial thread: */ - if (thread == _thread_initial) + if (thread == _thr_initial) /* The initial thread always uses the global error variable: */ errno = error; else |