[git commit nptl] math.h: fix trivial typo (missing !): !defined __NO_LONG_DOUBLE_MATH

Denys Vlasenko vda.linux at googlemail.com
Tue Sep 8 23:34:30 UTC 2009


commit: http://git.uclibc.org/uClibc/commit/?id=c3daabe3e7a11013ddb698ac94aa95299dc3ea3b
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/nptl

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
Signed-off-by: Austin Foxley <austinf at cetoncorp.com>
---
 include/math.h            |    2 +-
 libc/misc/syslog/syslog.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/math.h b/include/math.h
index a7c69b0..ecd0187 100644
--- a/include/math.h
+++ b/include/math.h
@@ -135,7 +135,7 @@ __BEGIN_DECLS
 
 
 # if (defined __STDC__ || defined __GNUC__) \
-     && (defined __NO_LONG_DOUBLE_MATH || defined __LDBL_COMPAT)
+     && (!defined __NO_LONG_DOUBLE_MATH || defined __LDBL_COMPAT)
 #  ifdef __LDBL_COMPAT
 
 #   ifdef __USE_ISOC99
diff --git a/libc/misc/syslog/syslog.c b/libc/misc/syslog/syslog.c
index da60874..dbb1e0d 100644
--- a/libc/misc/syslog/syslog.c
+++ b/libc/misc/syslog/syslog.c
@@ -164,7 +164,7 @@ retry:
 			if ((LogFile = socket(AF_UNIX, logType, 0)) == -1) {
 				goto DONE;
 			}
-			fcntl(LogFile, F_SETFD, 1); /* 1 == FD_CLOEXEC */
+			fcntl(LogFile, F_SETFD, FD_CLOEXEC);
 			/* We don't want to block if e.g. syslogd is SIGSTOPed */
 			fcntl(LogFile, F_SETFL, O_NONBLOCK | fcntl(LogFile, F_GETFL));
 		}
-- 
1.6.3.3



More information about the uClibc-cvs mailing list