summaryrefslogtreecommitdiff
path: root/sysdeps/libm-ieee754/s_tanhl.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/libm-ieee754/s_tanhl.c')
-rw-r--r--sysdeps/libm-ieee754/s_tanhl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/libm-ieee754/s_tanhl.c b/sysdeps/libm-ieee754/s_tanhl.c
index 9863af62a5..f7ea3f4216 100644
--- a/sysdeps/libm-ieee754/s_tanhl.c
+++ b/sysdeps/libm-ieee754/s_tanhl.c
@@ -87,6 +87,6 @@ static long double one=1.0, two=2.0, tiny = 1.0e-4900L;
} else {
z = one - tiny; /* raised inexact flag */
}
- return (se>0x7fff)? z: -z;
+ return (se>0x7fff)? -z: z;
}
weak_alias (__tanhl, tanhl)