]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix typo in csloww()
authorAllan McRae <allan@archlinux.org>
Fri, 27 Dec 2013 02:27:46 +0000 (12:27 +1000)
committerAllan McRae <allan@archlinux.org>
Fri, 27 Dec 2013 02:29:38 +0000 (12:29 +1000)
An incorrect variable name was used during the refactoring done in
commit 4aafb73c.

ChangeLog
NEWS
sysdeps/ieee754/dbl-64/s_sin.c

index 584f5896fd0d7683a62714c4a31abc415785a756..93dceecb3ab5b0c046d85b1191127adfbfb02325 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-12-27  Allan McRae  <allan@archlinux.org>
+
+       [BZ #16369]
+       * sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name.
+       Reported by Il'ya Malakhov <ilmalakhov@yandex.ru>
+
 2013-12-24  Brooks Moses  <bmoses@google.com>
 
        * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for
diff --git a/NEWS b/NEWS
index f3c19d83a7db20ea7dd049eab556a71bc93232b9..fcf679a9003b5bffe07695b9617ebac72c69a394 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -23,7 +23,7 @@ Version 2.19
   16038, 16041, 16055, 16071, 16072, 16074, 16077, 16078, 16103, 16112,
   16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214,
   16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337,
-  16338, 16356.
+  16338, 16356, 16369.
 
 * The public headers no longer use __unused nor __block.  This change is to
   support compiling programs that are derived from BSD sources and use
index bd2346cb9a29b1082af8fa9aafd9059e984cc5cd..edc441577c415aa2c9b675c78ac794c9247c4a0f 100644 (file)
@@ -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;