changeset 27377:69dd2ddc1731

* lib/sincosl.c (kernel_sinl): Fix typo in threshold.
author Bruno Haible <bruno@clisp.org>
date Thu, 23 Nov 2006 20:18:34 +0000
parents 0790ea4e33f8
children 7338d30b4f2f
files ChangeLog lib/sincosl.c
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Nov 23 15:22:51 2006 +0000
+++ b/ChangeLog	Thu Nov 23 20:18:34 2006 +0000
@@ -1,3 +1,7 @@
+2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
+
+	* lib/sincosl.c (kernel_sinl): Fix typo in threshold.
+
 2006-11-23  Jim Meyering  <jim@meyering.net>
 
 	* build-aux/announce-gen: New file.  From coreutils.
--- a/lib/sincosl.c	Thu Nov 23 15:22:51 2006 +0000
+++ b/lib/sincosl.c	Thu Nov 23 20:18:34 2006 +0000
@@ -1,5 +1,5 @@
 /* Quad-precision floating point trigonometric functions on <-pi/4,pi/4>.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2006 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Jakub Jelinek <jj@ultra.linux.cz>
 
@@ -113,7 +113,7 @@
       sign = -1;
     }
 
-  if (x < 0.148375L)		/* |x| < 0.1484375 */
+  if (x < 0.1484375L)		/* |x| < 0.1484375 */
     {
       /* Argument is small enough to approximate it by a Chebyshev
          polynomial of degree 17.  */