summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLassebq <lassebq.mine@gmail.com>2024-03-30 21:19:45 +0200
committerLassebq <lassebq.mine@gmail.com>2024-03-30 21:19:45 +0200
commit7c1f568ac90d2fb0cb16435b670755935981b14f (patch)
tree37e50dd66580cf5fa731c261a0f7bbeed0a822c4
parentd99236e9166d873139fb1c14e33556aea91e17bd (diff)
downloadgcompat-7c1f568ac90d2fb0cb16435b670755935981b14f.tar.gz
gcompat-7c1f568ac90d2fb0cb16435b670755935981b14f.tar.bz2
gcompat-7c1f568ac90d2fb0cb16435b670755935981b14f.tar.xz
gcompat-7c1f568ac90d2fb0cb16435b670755935981b14f.zip
fenv: Fix formattingHEADcurrent
-rw-r--r--libgcompat/fenv.c6
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) {