summaryrefslogtreecommitdiff
path: root/usr.bin/fstat
diff options
context:
space:
mode:
authorMike Belopuhov <mikeb@cvs.openbsd.org>2012-11-30 14:40:04 +0000
committerMike Belopuhov <mikeb@cvs.openbsd.org>2012-11-30 14:40:04 +0000
commit62be9c5bebd8033bc0836df70b749518920aeff2 (patch)
tree9ba8d8b6ae6eb7ca458df7570179bac306d104f5 /usr.bin/fstat
parent5f88d867e80a15cd77f1c7e81d62eb0d72c0debf (diff)
makes cloned devices line up well with the rest of the output;
ok guenther, krw
Diffstat (limited to 'usr.bin/fstat')
-rw-r--r--usr.bin/fstat/fstat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c
index 6efe3702ab1..562b67cbdef 100644
--- a/usr.bin/fstat/fstat.c
+++ b/usr.bin/fstat/fstat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fstat.c,v 1.72 2012/01/07 05:38:12 guenther Exp $ */
+/* $OpenBSD: fstat.c,v 1.73 2012/11/30 14:40:03 mikeb Exp $ */
/*
* Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -410,7 +410,7 @@ vtrans(struct kinfo_file2 *kf)
else if (!(kf->v_flag & VCLONE))
(void)printf(" %-8s", kf->f_mntonname);
else
- (void)printf(" clone");
+ (void)printf(" clone ");
if (nflg)
(void)snprintf(mode, sizeof(mode), "%o", kf->va_mode);
else