summary refs log tree commit diff
path: root/math/w_atan2l.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_atan2l.c')
-rw-r--r--math/w_atan2l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_atan2l.c b/math/w_atan2l.c
index 96b2321621..3048f97b0b 100644
--- a/math/w_atan2l.c
+++ b/math/w_atan2l.c
@@ -34,7 +34,7 @@ __atan2l (long double y, long double x)
     return __kernel_standard_l (y, x, 203); /* atan2(+-0,+-0) */
 
   z = __ieee754_atan2l (y, x);
-  if (__glibc_unlikely (z == 0.0L && y != 0.0L && __finitel (x)))
+  if (__glibc_unlikely (z == 0.0L && y != 0.0L && isfinite (x)))
     __set_errno (ERANGE);
   return z;
 }