diff options
author | Elliott Hughes <enh@google.com> | 2019-05-24 12:40:24 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-05-25 20:19:56 -0500 |
commit | 797e55ad9b41d3084095c1422210375e7b24e48f (patch) | |
tree | 45ef592dc596fdd110f0fcaacdf7848b5221d782 /toys/posix | |
parent | 94777894a95044c5253ec081503085ab9947cfec (diff) | |
download | toybox-797e55ad9b41d3084095c1422210375e7b24e48f.tar.gz |
time: fix -v output.
Copy-and-paste mistake from the regular output.
Bug: http://b/133502489
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |