diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2025-04-14 10:11:52 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-04-14 10:11:52 -0300 |
commit | 1d7834cac3d8a570b84bf1af1205a6897b747a01 (patch) | |
tree | 56e307ee3560ebe2bf901bb822735eb2fe7f52d4 | |
parent | a1805753ac461ed211a0627b9b58e662d84b34dd (diff) | |
download | glibc-1d7834cac3d8a570b84bf1af1205a6897b747a01.zip glibc-1d7834cac3d8a570b84bf1af1205a6897b747a01.tar.gz glibc-1d7834cac3d8a570b84bf1af1205a6897b747a01.tar.bz2 |
Fix spelling mistake "suports" -> "supports"
There are spelling mistakes in assert messages. Fix them.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
-rw-r--r-- | math/test-fesetexcept-traps.c | 2 | ||||
-rw-r--r-- | math/test-fexcept-traps.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/math/test-fesetexcept-traps.c b/math/test-fesetexcept-traps.c index bfd5517..441cb9d 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 67e8fc1..f832705 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); |