diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2025-04-14 10:11:02 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-04-14 10:11:02 -0300 |
commit | a1805753ac461ed211a0627b9b58e662d84b34dd (patch) | |
tree | 1397f5b8b85ae446130da4e565575d87d5a0eedf | |
parent | 363bbdbd2aeaae1e00f3872f2ba19a4a3c17bdf1 (diff) | |
download | glibc-a1805753ac461ed211a0627b9b58e662d84b34dd.zip glibc-a1805753ac461ed211a0627b9b58e662d84b34dd.tar.gz glibc-a1805753ac461ed211a0627b9b58e662d84b34dd.tar.bz2 |
Fix spelling mistake "succsefully" -> "successfully"
There is a spelling mistake in a puts statement. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
-rw-r--r-- | sysdeps/pthread/tst-stdio2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/pthread/tst-stdio2.c b/sysdeps/pthread/tst-stdio2.c index 08948cb..0876ed6 100644 --- a/sysdeps/pthread/tst-stdio2.c +++ b/sysdeps/pthread/tst-stdio2.c @@ -75,7 +75,7 @@ do_test (void) exit (1); } - puts ("join returned succsefully"); + puts ("join returned successfully"); return 0; } |