diff options
author | Denis Vlasenko | 2006-09-17 15:51:52 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-17 15:51:52 +0000 |
commit | a6127aacef047ed7661722705b052811fbe7f467 (patch) | |
tree | fbb52f03db49fabcbeddc290d1416fd130526f81 /util-linux/mount.c | |
parent | 6231e870ec52820cce4f8a98e8db280b38c5eec1 (diff) | |
download | busybox-a6127aacef047ed7661722705b052811fbe7f467.zip busybox-a6127aacef047ed7661722705b052811fbe7f467.tar.gz |
mount: style fixlet
Diffstat (limited to 'util-linux/mount.c')
-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 81357a3..ea96fb5 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -220,8 +220,10 @@ void delete_block_backed_filesystems(void); static int useMtab = 1; static int fakeIt; #else -#define useMtab 0 -#define fakeIt 0 +enum { + useMtab = 0, + fakeIt = 0, +}; #endif // Perform actual mount of specific filesystem at specific location. |