about summary refs log tree commit diff
path: root/math/w_asin_template.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_asin_template.c')
-rw-r--r--math/w_asin_template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_asin_template.c b/math/w_asin_template.c
index a960a92e17..9487ada6ab 100644
--- a/math/w_asin_template.c
+++ b/math/w_asin_template.c
@@ -29,7 +29,7 @@
 FLOAT
 M_DECL_FUNC (__asin) (FLOAT x)
 {
-  if (__glibc_unlikely (isgreater (M_SUF (fabs) (x),  M_LIT (1.0))))
+  if (__glibc_unlikely (isgreater (M_FABS (x),  M_LIT (1.0))))
     /* Domain error: asin(|x|>1).  */
     __set_errno (EDOM);
   return M_SUF (__ieee754_asin) (x);