From a1805753ac461ed211a0627b9b58e662d84b34dd Mon Sep 17 00:00:00 2001 From: Colin Ian King Date: Mon, 14 Apr 2025 10:11:02 -0300 Subject: [PATCH] Fix spelling mistake "succsefully" -> "successfully" There is a spelling mistake in a puts statement. Fix it. Signed-off-by: Colin Ian King Reviewed-by: Adhemerval Zanella --- sysdeps/pthread/tst-stdio2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/pthread/tst-stdio2.c b/sysdeps/pthread/tst-stdio2.c index 08948cb428..0876ed6427 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; }