diff options
author | Aditya Upadhyay <aadit0402@gmail.com> | 2017-07-28 23:04:34 +0530 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2017-07-28 20:30:30 +0200 |
commit | 124ccc500e22e5d118fcb98a190cdeb699331de2 (patch) | |
tree | b7f2c7fd9fc733995f90c4776590568f709be855 /newlib/libm | |
parent | 7dad0e441a98f4ec79dc10745b21df954b1ba768 (diff) | |
download | newlib-124ccc500e22e5d118fcb98a190cdeb699331de2.zip newlib-124ccc500e22e5d118fcb98a190cdeb699331de2.tar.gz newlib-124ccc500e22e5d118fcb98a190cdeb699331de2.tar.bz2 |
Fixing HUGE_VALF to HUGE_VALL.
Diffstat (limited to 'newlib/libm')
-rw-r--r-- | newlib/libm/complex/ctanl.c | 2 |
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; } |