summaryrefslogtreecommitdiffstats
path: root/usr.bin/quota/quota.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/quota/quota.c')
-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 c007e52..c725ad9 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)
OpenPOWER on IntegriCloud