summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libc/unistd/daemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/unistd/daemon.c b/libc/unistd/daemon.c
index d71d25480..3a00ee166 100644
--- a/libc/unistd/daemon.c
+++ b/libc/unistd/daemon.c
@@ -124,9 +124,9 @@ int daemon( int nochdir, int noclose )
if (!noclose)
{
#ifdef __UCLIBC_HAS_LFS__
- struct stat64 st;
+ struct stat64 st;
#else
- struct stat st;
+ struct stat st;
#endif
if ((fd = open_not_cancel(_PATH_DEVNULL, O_RDWR, 0)) != -1