about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-128/e_atanhl.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/e_atanhl.c')
-rw-r--r--sysdeps/ieee754/ldbl-128/e_atanhl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ieee754/ldbl-128/e_atanhl.c b/sysdeps/ieee754/ldbl-128/e_atanhl.c
index 05cf95647c..3905af4dfc 100644
--- a/sysdeps/ieee754/ldbl-128/e_atanhl.c
+++ b/sysdeps/ieee754/ldbl-128/e_atanhl.c
@@ -36,9 +36,9 @@
 #include <math.h>
 #include <math_private.h>
 
-static const _Float128 one = 1.0L, huge = 1e4900L;
+static const _Float128 one = 1, huge = L(1e4900);
 
-static const _Float128 zero = 0.0L;
+static const _Float128 zero = 0;
 
 _Float128
 __ieee754_atanhl(_Float128 x)