summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-10-24 21:23:47 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-10-24 21:23:47 +0000
commit84b4ac514ee998e8cdb4ba364b756249779c7110 (patch)
tree0539f927634ac5ab6765210bc17324a765d70b2d /usr.bin
parent13b5f02d60063eebd5f0e479a7093907f810116b (diff)
Notes
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/systat/vmstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c
index 6a11f4651555..a4a9269edb3f 100644
--- a/usr.bin/systat/vmstat.c
+++ b/usr.bin/systat/vmstat.c
@@ -679,7 +679,7 @@ putint(n, l, lc, w)
}
snprintf(b, sizeof(b), "%*d", w, n);
if ((int)strlen(b) > w)
- snprintf(b, sizeof(b), "%*dK", w - 1, n / 1000);
+ snprintf(b, sizeof(b), "%*dk", w - 1, n / 1000);
if ((int)strlen(b) > w)
snprintf(b, sizeof(b), "%*dM", w - 1, n / 1000000);
addstr(b);