aboutsummaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorAditya Upadhyay <aadit0402@gmail.com>2017-07-28 23:04:34 +0530
committerCorinna Vinschen <corinna@vinschen.de>2017-07-28 20:30:30 +0200
commit124ccc500e22e5d118fcb98a190cdeb699331de2 (patch)
treeb7f2c7fd9fc733995f90c4776590568f709be855 /newlib
parent7dad0e441a98f4ec79dc10745b21df954b1ba768 (diff)
downloadnewlib-124ccc500e22e5d118fcb98a190cdeb699331de2.zip
newlib-124ccc500e22e5d118fcb98a190cdeb699331de2.tar.gz
newlib-124ccc500e22e5d118fcb98a190cdeb699331de2.tar.bz2
Fixing HUGE_VALF to HUGE_VALL.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/libm/complex/ctanl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/complex/ctanl.c b/newlib/libm/complex/ctanl.c
index 9255bdb..c5c887c 100644
--- a/newlib/libm/complex/ctanl.c
+++ b/newlib/libm/complex/ctanl.c
@@ -47,7 +47,7 @@ ctanl(long double complex z)
if (d == 0.0L) {
/* mtherr ("ctan", OVERFLOW); */
- w = HUGE_VALF + HUGE_VALF * I;
+ w = HUGE_VALL + HUGE_VALL * I;
return w;
}