From: Colin Ian King Date: Mon, 14 Apr 2025 13:11:02 +0000 (-0300) Subject: Fix spelling mistake "succsefully" -> "successfully" X-Git-Tag: glibc-2.42~309 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1805753ac461ed211a0627b9b58e662d84b34dd;p=thirdparty%2Fglibc.git 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 --- 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; }