summary refs log tree commit diff
path: root/math/w_scalblnl.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_scalblnl.c')
-rw-r--r--math/w_scalblnl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_scalblnl.c b/math/w_scalblnl.c
index dd23b4b5ae..2c4980b31c 100644
--- a/math/w_scalblnl.c
+++ b/math/w_scalblnl.c
@@ -23,12 +23,12 @@
 long double
 __w_scalblnl (long double x, long int n)
 {
-  if (!__finitel (x) || x == 0.0L)
+  if (!isfinite (x) || x == 0.0L)
     return x;
 
   x = __scalblnl (x, n);
 
-  if (!__finitel (x) || x == 0.0L)
+  if (!isfinite (x) || x == 0.0L)
     __set_errno (ERANGE);
 
   return x;