summaryrefslogtreecommitdiff
path: root/sysdeps/libm-ieee754/s_clog10f.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/libm-ieee754/s_clog10f.c')
-rw-r--r--sysdeps/libm-ieee754/s_clog10f.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/libm-ieee754/s_clog10f.c b/sysdeps/libm-ieee754/s_clog10f.c
index 4e2fa83edf..bc4094b8ba 100644
--- a/sysdeps/libm-ieee754/s_clog10f.c
+++ b/sysdeps/libm-ieee754/s_clog10f.c
@@ -44,7 +44,7 @@ __clog10f (__complex__ float x)
/* Neither real nor imaginary part is NaN. */
__real__ result = __ieee754_log10f (__ieee754_hypotf (__real__ x,
__imag__ x));
- __imag__ result = __ieee754_atan2f (__imag__ x, __real__ x);
+ __imag__ result = M_LOG10E * __ieee754_atan2f (__imag__ x, __real__ x);
}
else
{