aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-17 15:51:52 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-17 15:51:52 +0000
commit75648f106cb64fb6ccbb4a79d89fd6aef7298081 (patch)
treefbb52f03db49fabcbeddc290d1416fd130526f81
parent40da8715e85049a5ef283b8f757696acdac356cb (diff)
downloadbusybox-w32-75648f106cb64fb6ccbb4a79d89fd6aef7298081.tar.gz
busybox-w32-75648f106cb64fb6ccbb4a79d89fd6aef7298081.tar.bz2
busybox-w32-75648f106cb64fb6ccbb4a79d89fd6aef7298081.zip
mount: style fixlet
git-svn-id: svn://busybox.net/trunk/busybox@16141 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--util-linux/mount.c6
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);
220static int useMtab = 1; 220static int useMtab = 1;
221static int fakeIt; 221static int fakeIt;
222#else 222#else
223#define useMtab 0 223enum {
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.