aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/quota
diff options
context:
space:
mode:
authorMike Pritchard <mpp@FreeBSD.org>2008-02-18 01:36:40 +0000
committerMike Pritchard <mpp@FreeBSD.org>2008-02-18 01:36:40 +0000
commitdf2725533a9264840abf65ab000cfe9d2e8f9614 (patch)
tree2c1e0300e5458685548250d2f433ce988c6e192c /usr.bin/quota
parenta83655a35f3ee7b6073954ddd36a4f86ea3db1b1 (diff)
Notes
Diffstat (limited to 'usr.bin/quota')
-rw-r--r--usr.bin/quota/quota.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/quota/quota.c b/usr.bin/quota/quota.c
index c007e529dbf4..c725ad952f6a 100644
--- a/usr.bin/quota/quota.c
+++ b/usr.bin/quota/quota.c
@@ -350,10 +350,12 @@ showquotas(int type, u_long id, const char *name)
}
printf("%15s", nam);
if (hflag) {
- prthumanval(7, dbtob(qup->dqblk.dqb_curblocks));
- printf("%c", (msgb == (char *)0) ? ' ' : '*');
- prthumanval(6, dbtob(qup->dqblk.dqb_bsoftlimit));
- prthumanval(7, dbtob(qup->dqblk.dqb_bhardlimit));
+ printf(" ");
+ prthumanval(4, dbtob(qup->dqblk.dqb_curblocks));
+ printf("%c ", (msgb == (char *)0) ? ' ' : '*');
+ prthumanval(4, dbtob(qup->dqblk.dqb_bsoftlimit));
+ printf(" ");
+ prthumanval(4, dbtob(qup->dqblk.dqb_bhardlimit));
} else {
printf(" %7ju%c %6ju %7ju",
(uintmax_t)(dbtob(qup->dqblk.dqb_curblocks)