From a6127aacef047ed7661722705b052811fbe7f467 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 17 Sep 2006 15:51:52 +0000 Subject: [PATCH] mount: style fixlet --- util-linux/mount.c | 6 ++++-- 1 file 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. -- 2.7.4