summaryrefslogtreecommitdiffstats
path: root/usr.sbin/makefs/makefs.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/makefs/makefs.c')
-rw-r--r--usr.sbin/makefs/makefs.c10
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]);