From 49a41c4f52ba4af26dca75b745f2503828bb88de Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Tue, 24 Oct 2006 22:16:51 +0000 Subject: [PATCH] Two tiny style fixes. --- sbin/mount/mount.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index a51e171d063f..63a9728668f0 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -183,8 +183,8 @@ exec_mountprog(const char *name, const char *execname, char *const argv[]) return (0); } -static -int specified_ro(const char *arg) +static int +specified_ro(const char *arg) { char *optbuf, *opt; int ret = 0; @@ -219,7 +219,7 @@ main(int argc, char *argv[]) options = NULL; vfslist = NULL; vfstype = "ufs"; - while ((ch = getopt(argc, argv, "adlF:fo:prwt:uv")) != -1) + while ((ch = getopt(argc, argv, "adF:flo:prt:uvw")) != -1) switch (ch) { case 'a': all = 1;