diff options
Diffstat (limited to 'sysdeps/pthread/tst-tsd2.c')
-rw-r--r-- | sysdeps/pthread/tst-tsd2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/pthread/tst-tsd2.c b/sysdeps/pthread/tst-tsd2.c index 275bbccfdd..6b4ca7c49f 100644 --- a/sysdeps/pthread/tst-tsd2.c +++ b/sysdeps/pthread/tst-tsd2.c @@ -27,7 +27,7 @@ static int result; static void destr (void *arg) { - if (arg != (void *) -2l) + if (arg != (void *) &result) result = 2; else result = 0; @@ -40,7 +40,8 @@ tf (void *arg) pthread_key_t key = (pthread_key_t) (long int) arg; int err; - err = pthread_setspecific (key, (void *) -2l); + /* Use an arbirary but valid pointer to avoid GCC warnings. */ + err = pthread_setspecific (key, &result); if (err != 0) result = 3; |