From 797e55ad9b41d3084095c1422210375e7b24e48f Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Fri, 24 May 2019 12:40:24 -0700 Subject: time: fix -v output. Copy-and-paste mistake from the regular output. Bug: http://b/133502489 --- toys/posix/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/posix/time.c b/toys/posix/time.c index 79a98676..f51a3b95 100644 --- a/toys/posix/time.c +++ b/toys/posix/time.c @@ -55,7 +55,7 @@ void time_main(void) "File system inputs: %ld\n" "File system outputs: %ld\n" "Voluntary context switches: %ld\n" - "Involuntary context switches: %ld\n", r, u, s, + "Involuntary context switches: %ld\n", r, s, u, ru.ru_maxrss, ru.ru_majflt, ru.ru_minflt, ru.ru_inblock, ru.ru_oublock, ru.ru_nvcsw, ru.ru_nivcsw); } else fprintf(stderr, "real %f\nuser %f\nsys %f\n", r, u, s); -- cgit v1.2.3