From 54965cadfe8f1aef663600cb07d3edbb0acf8769 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 9 Sep 2020 03:11:37 -0500 Subject: Attempt internationalization of HR_COMMAS, 9 digit memory sizes for top, and use the comma format when selected even if <3 digits (no 0.0M) --- toys/posix/ps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/posix/ps.c') diff --git a/toys/posix/ps.c b/toys/posix/ps.c index cadc060b..6a7afda6 100644 --- a/toys/posix/ps.c +++ b/toys/posix/ps.c @@ -1604,11 +1604,11 @@ static void top_common( "\nBuffers:","\nSwapTotal:","\nSwapFree:","\nCached:"}[i]); run[i] = pos ? atol(pos) : 0; k = (*run>=10000000); - human_readable_long(hr[j+!!j], run[i]>>(10*k), 8, k+1, HR_COMMAS); + human_readable_long(hr[j+!!j], run[i]>>(10*k), 9, k+1, HR_COMMAS); if (j==1) human_readable_long(hr[1], (run[i-1]-run[i])>>(10*k), 8, k+1, HR_COMMAS); else if (j==2) { - sprintf(toybuf, " %s: %9s total, %9s used, %9s free, %9s %s", + sprintf(toybuf, " %s:%10s total,%10s used,%10s free,%10s %s", (i<3) ? " Mem" : "Swap", hr[0], hr[1], hr[2], hr[3], (i<3) ? "buffers" : "cached"); lines = header_line(lines, 0); -- cgit v1.2.3