From fb475f5962d04a63e79f54f561727ce0136c3fbc Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 21 Jul 1999 15:16:43 +0000 Subject: [PATCH] Fix for systems that have syslog.h but no syslog function! git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4630 72102866-910b-0410-8b05-ffd578937521 --- Source/NSLog.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSLog.m b/Source/NSLog.m index a735da0a8..a21a70098 100644 --- a/Source/NSLog.m +++ b/Source/NSLog.m @@ -49,7 +49,7 @@ _NSLog_standard_printf_handler (NSString* message) [message getCString: buf]; buf[len] = '\0'; -#ifdef HAVE_SYSLOG_H +#ifdef HAVE_SYSLOG if (write(2, buf, len) != len) {