diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-21 11:13:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-21 11:13:08 +0000 |
commit | 116080a13a921a6f033f3fa63d054a9640875faf (patch) | |
tree | b4bab65c966fb8947dbd9b5e0c53e55650a420d0 | |
parent | fbdf121b7da7fa78160f7c35ea7c4b3ed2f307d4 (diff) | |
download | busybox-116080a13a921a6f033f3fa63d054a9640875faf.tar.gz |
mount: make Rob happy by reinstating #defines
-rw-r--r-- | util-linux/mount.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index ab20ab9fc..35776e3e0 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -220,10 +220,8 @@ void delete_block_backed_filesystems(void); static int useMtab = 1; static int fakeIt; #else -enum { - useMtab = 0, - fakeIt = 0, -}; +#define useMtab 0 +#define fakeIt 0 #endif // Perform actual mount of specific filesystem at specific location. |