From ca0a6bc4c5c53aa6c4a735c36336408a06b8cd89 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 17 Jul 2013 14:53:24 +0200 Subject: Fix cbrtl for ldbl-96 --- sysdeps/ieee754/ldbl-96/s_cbrtl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/ieee754') diff --git a/sysdeps/ieee754/ldbl-96/s_cbrtl.c b/sysdeps/ieee754/ldbl-96/s_cbrtl.c index b481c84eb0..e6b2f2540e 100644 --- a/sysdeps/ieee754/ldbl-96/s_cbrtl.c +++ b/sysdeps/ieee754/ldbl-96/s_cbrtl.c @@ -45,7 +45,7 @@ __cbrtl (long double x) int xe; /* Reduce X. XM now is an range 1.0 to 0.5. */ - xm = __frexpl (fabs (x), &xe); + xm = __frexpl (fabsl (x), &xe); /* If X is not finite or is null return it (with raising exceptions if necessary. -- cgit 1.4.1