diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-10-24 21:23:47 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-10-24 21:23:47 +0000 |
| commit | 84b4ac514ee998e8cdb4ba364b756249779c7110 (patch) | |
| tree | 0539f927634ac5ab6765210bc17324a765d70b2d /usr.bin | |
| parent | 13b5f02d60063eebd5f0e479a7093907f810116b (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/systat/vmstat.c | 2 |
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); |
