about summary refs log tree commit diff
path: root/sysdeps/pthread/tst-tss-basic.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/pthread/tst-tss-basic.c')
-rw-r--r--sysdeps/pthread/tst-tss-basic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/pthread/tst-tss-basic.c b/sysdeps/pthread/tst-tss-basic.c
index 3b06abc5cf..5a2c1bd1ee 100644
--- a/sysdeps/pthread/tst-tss-basic.c
+++ b/sysdeps/pthread/tst-tss-basic.c
@@ -33,7 +33,7 @@ tss_thrd (void *arg)
   if (tss_create (&key, NULL) != thrd_success)
     FAIL_EXIT1 ("tss_create failed");
 
-  if (tss_set (key, TSS_VALUE))
+  if (tss_set (key, TSS_VALUE) != thrd_success)
     FAIL_EXIT1 ("tss_set failed");
 
   void *value = tss_get (key);