diff options
| author | Warner Losh <imp@FreeBSD.org> | 2025-09-14 14:48:40 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2025-09-14 14:48:40 +0000 |
| commit | 455426da078cbbea8160bf4232b3fd1ae56e2ff5 (patch) | |
| tree | 19ea1433f66d98de7a7911659dc24654356acf19 | |
| parent | 4c91a542d30156ba693222c5bb85856aef004c9d (diff) | |
Fix floaing point test. (again)
Fixes: 9dd78db9c30a
| -rw-r--r-- | lib/libc/tests/stdio/printfloat_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/tests/stdio/printfloat_test.c b/lib/libc/tests/stdio/printfloat_test.c index 333eb3f4eb19..4493fe1c15d3 100644 --- a/lib/libc/tests/stdio/printfloat_test.c +++ b/lib/libc/tests/stdio/printfloat_test.c @@ -406,7 +406,7 @@ ATF_TC_BODY(hexadecimal_rounding_fullprec, tc) #if defined(__aarch64__) /* On arm64, long double is IEEE binary128 (mantissa=113) */ - testfmt("0x1.3c0ca428c59fbbbbbbbbbbbbbbbbp+0", "%.28La", 0x1.3c0ca428c59fbbbbbbbbbbbbbbbbp + 0L); + testfmt("0x1.3c0ca428c59fbbbbbbbbbbbbbbbbp+0", "%.28La", 0x1.3c0ca428c59fbbbbbbbbbbbbbbbbp+0L); #endif } |
