diff options
author | Lassebq <lassebq.mine@gmail.com> | 2024-03-30 21:19:45 +0200 |
---|---|---|
committer | Lassebq <lassebq.mine@gmail.com> | 2024-03-30 21:19:45 +0200 |
commit | 7c1f568ac90d2fb0cb16435b670755935981b14f (patch) | |
tree | 37e50dd66580cf5fa731c261a0f7bbeed0a822c4 | |
parent | d99236e9166d873139fb1c14e33556aea91e17bd (diff) | |
download | gcompat-7c1f568ac90d2fb0cb16435b670755935981b14f.tar.gz gcompat-7c1f568ac90d2fb0cb16435b670755935981b14f.tar.bz2 gcompat-7c1f568ac90d2fb0cb16435b670755935981b14f.tar.xz gcompat-7c1f568ac90d2fb0cb16435b670755935981b14f.zip |
fenv: Fix formatting
-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) { |