diff options
-rw-r--r-- | libgcompat/fenv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgcompat/fenv.c b/libgcompat/fenv.c index 07dbec1..23dd3fc 100644 --- a/libgcompat/fenv.c +++ b/libgcompat/fenv.c @@ -4,9 +4,9 @@ int fedisableexcept(int excepts) { int feenableexcept(int excepts) { if(excepts != 0) { - return -1; - } - return 0; + return -1; + } + return 0; } int fegetexcept(void) { |