diff options
author | Allan McRae <allan@archlinux.org> | 2013-12-27 12:27:46 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-12-27 12:29:38 +1000 |
commit | 6c9642eda644eb76e03776e16dae41b624a709b9 (patch) | |
tree | ca229aaa75f0fa3101f127db2b703c810c274687 /sysdeps/ieee754/dbl-64 | |
parent | 46c0cc3aa5c4492c0f01be5158a9e4a60bf9fe4b (diff) | |
download | glibc-6c9642eda644eb76e03776e16dae41b624a709b9.tar.gz glibc-6c9642eda644eb76e03776e16dae41b624a709b9.tar.xz glibc-6c9642eda644eb76e03776e16dae41b624a709b9.zip |
Fix typo in csloww()
An incorrect variable name was used during the refactoring done in commit 4aafb73c.
Diffstat (limited to 'sysdeps/ieee754/dbl-64')
-rw-r--r-- | sysdeps/ieee754/dbl-64/s_sin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/dbl-64/s_sin.c b/sysdeps/ieee754/dbl-64/s_sin.c index bd2346cb9a..edc441577c 100644 --- a/sysdeps/ieee754/dbl-64/s_sin.c +++ b/sysdeps/ieee754/dbl-64/s_sin.c @@ -1102,7 +1102,7 @@ csloww (double x, double dx, double orig) int4 n; /* Taylor series */ - t = TAYLOR_SLOW (x, dx, cor); + res = TAYLOR_SLOW (x, dx, cor); if (cor > 0) cor = 1.0005 * cor + ABS (orig) * 3.1e-30; |