From: Colin Ian King Date: Mon, 14 Apr 2025 13:11:52 +0000 (-0300) Subject: Fix spelling mistake "suports" -> "supports" X-Git-Tag: glibc-2.42~308 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d7834cac3d8a570b84bf1af1205a6897b747a01;p=thirdparty%2Fglibc.git Fix spelling mistake "suports" -> "supports" There are spelling mistakes in assert messages. Fix them. Signed-off-by: Colin Ian King Reviewed-by: Adhemerval Zanella --- diff --git a/math/test-fesetexcept-traps.c b/math/test-fesetexcept-traps.c index bfd5517374..441cb9d0f0 100644 --- a/math/test-fesetexcept-traps.c +++ b/math/test-fesetexcept-traps.c @@ -48,7 +48,7 @@ do_test (void) _Static_assert (!(EXCEPTION_SET_FORCES_TRAP && !EXCEPTION_TESTS(float)), "EXCEPTION_SET_FORCES_TRAP only makes sense if the " - "architecture suports exceptions"); + "architecture supports exceptions"); { int exc_before = fegetexcept (); ret = fesetexcept (FE_ALL_EXCEPT); diff --git a/math/test-fexcept-traps.c b/math/test-fexcept-traps.c index 67e8fc12bf..f832705746 100644 --- a/math/test-fexcept-traps.c +++ b/math/test-fexcept-traps.c @@ -72,7 +72,7 @@ do_test (void) _Static_assert (!(EXCEPTION_SET_FORCES_TRAP && !EXCEPTION_TESTS(float)), "EXCEPTION_SET_FORCES_TRAP only makes sense if the " - "architecture suports exceptions"); + "architecture supports exceptions"); { int exc_before = fegetexcept (); ret = fesetexceptflag (&saved, FE_ALL_EXCEPT);