diff options
Diffstat (limited to 'sysdeps/or1k')
-rw-r--r-- | sysdeps/or1k/nptl/tls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/or1k/nptl/tls.h b/sysdeps/or1k/nptl/tls.h index e82f444738..eda0e893ae 100644 --- a/sysdeps/or1k/nptl/tls.h +++ b/sysdeps/or1k/nptl/tls.h @@ -112,7 +112,7 @@ register tcbhead_t *__thread_self __asm__("r10"); It's hard to fail this, so return NULL always. */ # define TLS_INIT_TP(tcbp) \ - ({__thread_self = ((tcbhead_t *)tcbp + 1); NULL;}) + ({__thread_self = ((tcbhead_t *)tcbp + 1); true;}) /* Value passed to 'clone' for initialization of the thread register. */ # define TLS_DEFINE_INIT_TP(tp, pd) \ |