diff options
Diffstat (limited to 'nptl/tst-tsd3.c')
-rw-r--r-- | nptl/tst-tsd3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nptl/tst-tsd3.c b/nptl/tst-tsd3.c index c755c0c..0b3b01f 100644 --- a/nptl/tst-tsd3.c +++ b/nptl/tst-tsd3.c @@ -36,7 +36,7 @@ destr1 (void *arg) { puts ("set key2"); - /* Use an arbirary but valid pointer to avoid GCC warnings. */ + /* Use an arbitrary but valid pointer to avoid GCC warnings. */ if (pthread_setspecific (key2, (void *) &left) != 0) { puts ("destr1: setspecific failed"); @@ -53,7 +53,7 @@ destr2 (void *arg) { puts ("set key1"); - /* Use an arbirary but valid pointer to avoid GCC warnings. */ + /* Use an arbitrary but valid pointer to avoid GCC warnings. */ if (pthread_setspecific (key1, (void *) &left) != 0) { puts ("destr2: setspecific failed"); @@ -69,7 +69,7 @@ tf (void *arg) /* Let the destructors work. */ left = 7; - /* Use an arbirary but valid pointer to avoid GCC warnings. */ + /* Use an arbitrary but valid pointer to avoid GCC warnings. */ if (pthread_setspecific (key1, (void *) &left) != 0 || pthread_setspecific (key2, (void *) &left) != 0) { |