mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
LibC: Fix typo in fenv.h
`FE_TOWARDSZERO` is actually spelled `FE_TOWARDZERO` (without the 'S')
This commit is contained in:
parent
50632af4de
commit
a13e8d49cf
Notes:
sideshowbarker
2024-07-18 21:42:45 +09:00
Author: https://github.com/RealKC
Commit: a13e8d49cf
Pull-request: https://github.com/SerenityOS/serenity/pull/5639
2 changed files with 2 additions and 2 deletions
|
@ -157,7 +157,7 @@ int fegetround()
|
|||
|
||||
int fesetround(int rounding_mode)
|
||||
{
|
||||
if (rounding_mode < FE_TONEAREST || rounding_mode > FE_TOWARDSZERO)
|
||||
if (rounding_mode < FE_TONEAREST || rounding_mode > FE_TOWARDZERO)
|
||||
return 1;
|
||||
|
||||
auto control_word = read_control_word();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue