This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.15-66-g8784a6d


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  8784a6db9151da74c1ffab427d49014533cf865f (commit)
      from  c473bd1cd99db042dc1958c1bbaff3cba01a7893 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=8784a6db9151da74c1ffab427d49014533cf865f

commit 8784a6db9151da74c1ffab427d49014533cf865f
Author: Ulrich Drepper <drepper@gmail.com>
Date:   Sun Jan 8 15:55:52 2012 -0500

    Fix typo in CMPLXL

diff --git a/ChangeLog b/ChangeLog
index 85b8420..8c48331 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
 
+	* math/complex.h (CMPLXL): Fix typo.
+
 	* debug/Makefile (routines): Add poll_chk and ppoll_chk.
 	* debug/Versions: Export __pool_chk and __ppoll_chk from libc for
 	GLIBC_2.16.
diff --git a/math/complex.h b/math/complex.h
index 9cbcc7f..9217fdd 100644
--- a/math/complex.h
+++ b/math/complex.h
@@ -54,7 +54,7 @@ __BEGIN_DECLS
 # define CMPLX(x, y) __builtin_complex ((double) (x), (double) (y))
 # define CMPLXF(x, y) __builtin_complex ((float) (x), (float) (y))
 # ifndef __NO_LONG_DOUBLE_MATH
-#  define CMPLXL(x, y) __builtin_complex ((double) (x), (double) (y))
+#  define CMPLXL(x, y) __builtin_complex ((long double) (x), (long double) (y))
 # endif
 #endif
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog      |    2 ++
 math/complex.h |    2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]