diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2015-07-14 20:27:09 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2015-07-14 20:27:09 +0530 |
commit | 38b759496b0483491e54f3946ae8f0e55d8c079f (patch) | |
tree | 130eda3b9628813b586614d2030d48ed34b59786 | |
parent | edcfe9eab03ea3dd1b3e04b6056a7663c40265c4 (diff) | |
download | glibc-38b759496b0483491e54f3946ae8f0e55d8c079f.tar glibc-38b759496b0483491e54f3946ae8f0e55d8c079f.tar.gz glibc-38b759496b0483491e54f3946ae8f0e55d8c079f.tar.bz2 glibc-38b759496b0483491e54f3946ae8f0e55d8c079f.zip |
Fix up typo in tst-tls-atexit
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | stdlib/tst-tls-atexit.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2015-07-14 Siddhesh Poyarekar <siddhesh@redhat.com> + + * stdlib/tst-tls-atexit.c (do_test): Fix typo. + 2015-07-14 Adhemerval Zanella <adhemerval.zanella@linaro.org> * elf/Makefile [ifeq (yes,$(build-shared)) (tests)] (tst-nodelete): diff --git a/stdlib/tst-tls-atexit.c b/stdlib/tst-tls-atexit.c index 974264dcd7..0c6c499822 100644 --- a/stdlib/tst-tls-atexit.c +++ b/stdlib/tst-tls-atexit.c @@ -72,7 +72,7 @@ do_test (void) if ((ret = pthread_join (t, &thr_ret)) != 0) { - printf ("pthread_create failed: %s\n", strerror (ret)); + printf ("pthread_join failed: %s\n", strerror (ret)); return 1; } |