diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-17 15:51:52 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-17 15:51:52 +0000 |
commit | a6127aacef047ed7661722705b052811fbe7f467 (patch) | |
tree | fbb52f03db49fabcbeddc290d1416fd130526f81 | |
parent | 6231e870ec52820cce4f8a98e8db280b38c5eec1 (diff) | |
download | busybox-w32-a6127aacef047ed7661722705b052811fbe7f467.tar.gz busybox-w32-a6127aacef047ed7661722705b052811fbe7f467.tar.bz2 busybox-w32-a6127aacef047ed7661722705b052811fbe7f467.zip |
mount: style fixlet
-rw-r--r-- | util-linux/mount.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 81357a33e..ea96fb5b0 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -220,8 +220,10 @@ void delete_block_backed_filesystems(void); | |||
220 | static int useMtab = 1; | 220 | static int useMtab = 1; |
221 | static int fakeIt; | 221 | static int fakeIt; |
222 | #else | 222 | #else |
223 | #define useMtab 0 | 223 | enum { |
224 | #define fakeIt 0 | 224 | useMtab = 0, |
225 | fakeIt = 0, | ||
226 | }; | ||
225 | #endif | 227 | #endif |
226 | 228 | ||
227 | // Perform actual mount of specific filesystem at specific location. | 229 | // Perform actual mount of specific filesystem at specific location. |