diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-05-14 17:26:47 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-05-14 17:26:47 +0200 |
commit | 8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701 (patch) | |
tree | 4bf2806134b65a8734ab6521fb2a1ce243631b42 /util-linux | |
parent | 0545bfa841540a0d7d7e2953bc205eda64144c2e (diff) | |
download | busybox-w32-8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701.tar.gz busybox-w32-8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701.tar.bz2 busybox-w32-8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701.zip |
style fix, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 526b4130c..e6bad7c2c 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -1194,7 +1194,10 @@ static int daemonize(void) | |||
1194 | return 1; | 1194 | return 1; |
1195 | } | 1195 | } |
1196 | #else | 1196 | #else |
1197 | static inline int daemonize(void) { return -ENOSYS; } | 1197 | static inline int daemonize(void) |
1198 | { | ||
1199 | return -ENOSYS; | ||
1200 | } | ||
1198 | #endif | 1201 | #endif |
1199 | 1202 | ||
1200 | /* TODO */ | 1203 | /* TODO */ |