From: Bruno Haible Date: Thu, 23 Nov 2006 20:18:34 +0000 (+0000) Subject: * lib/sincosl.c (kernel_sinl): Fix typo in threshold. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6eeca796a39134d0f4ccfee9a29c65312fc0f47;p=pspp * lib/sincosl.c (kernel_sinl): Fix typo in threshold. --- diff --git a/ChangeLog b/ChangeLog index e0cb96a427..0408b8f820 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-11-22 Robinson Mittmann (tiny change) + + * lib/sincosl.c (kernel_sinl): Fix typo in threshold. + 2006-11-23 Jim Meyering * build-aux/announce-gen: New file. From coreutils. diff --git a/lib/sincosl.c b/lib/sincosl.c index 16c6b83e88..e832bd7240 100644 --- a/lib/sincosl.c +++ b/lib/sincosl.c @@ -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 @@ -113,7 +113,7 @@ kernel_sinl (long double x, long double y, int iy) 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. */