diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-05-26 15:37:38 -0700 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-05-26 15:37:38 -0700 |
commit | a9d135ebd14800bbae1db3c655336da57c4a50ac (patch) | |
tree | f3b0067464685653a49a43e364fba055b14259b9 /libc | |
parent | 0949826e9501e9f08767aeb476ea1464bf95f218 (diff) | |
download | uClibc-alpine-a9d135ebd14800bbae1db3c655336da57c4a50ac.tar.bz2 uClibc-alpine-a9d135ebd14800bbae1db3c655336da57c4a50ac.tar.xz |
Fix whitespace
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc')
-rw-r--r-- | libc/unistd/daemon.c | 4 |
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 |