From feea6db8157b11ec71fc1a992ae1a8913d1cd9b4 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 10 Nov 2009 17:39:20 +0100 Subject: daemon.c: fix #if NDEBUG --> #ifdef NDEBUG Thanks to Mathew Mrosko for pointing that out. --- src/daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon.c b/src/daemon.c index e865ecf..41b821a 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -48,7 +48,7 @@ void makedaemon (void) umask (0177); -#if NDEBUG +#ifdef NDEBUG /* * When not in debugging mode, close the standard file * descriptors. -- cgit v1.2.3