diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-12-17 16:12:16 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-12-17 16:12:16 +0000 |
commit | f1afa4903ba4f778060cf846aca200a8f15f4248 (patch) | |
tree | 7a69b8211ed26dfe1a3a2c6cf755cb3336b48ee9 /usr.sbin/makefs/makefs.c | |
parent | ad3cad4ad0b46b07e66405657a99afe5549d6fc0 (diff) |
While here nuke some more annoying whitespace nits.
Diffstat (limited to 'usr.sbin/makefs/makefs.c')
-rw-r--r-- | usr.sbin/makefs/makefs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/makefs/makefs.c b/usr.sbin/makefs/makefs.c index 60a108ce55f..8946e424926 100644 --- a/usr.sbin/makefs/makefs.c +++ b/usr.sbin/makefs/makefs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: makefs.c,v 1.18 2016/11/08 09:43:59 mestre Exp $ */ +/* $OpenBSD: makefs.c,v 1.19 2016/12/17 16:12:15 krw Exp $ */ /* $NetBSD: makefs.c,v 1.53 2015/11/27 15:10:32 joerg Exp $ */ /* @@ -85,7 +85,7 @@ main(int argc, char *argv[]) fstype_t *fstype; fsinfo_t fsoptions; fsnode *root; - int ch, len; + int ch, len; if ((fstype = get_fstype(DEFAULT_FSTYPE)) == NULL) errx(1, "Unknown default fs type `%s'.", DEFAULT_FSTYPE); @@ -144,10 +144,10 @@ main(int argc, char *argv[]) break; case 'O': - fsoptions.offset = + fsoptions.offset = strsuftoll("offset", optarg, 0LL, LLONG_MAX); break; - + case 'o': { char *p; @@ -290,7 +290,7 @@ static fstype_t * get_fstype(const char *type) { int i; - + for (i = 0; fstypes[i].type != NULL; i++) if (strcmp(fstypes[i].type, type) == 0) return (&fstypes[i]); |