aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2020-12-15 00:01:26 -0500
committerRuss Cox <rsc@swtch.com>2020-12-15 00:06:03 -0500
commita012d174336358f997ddcb0099c0b01499b053e4 (patch)
tree2e7b800c3234ded3495e8b6c4c3074a3642ea9f0
parent291f7411783bf6871b253f3b15ce691eea7a257e (diff)
downloadplan9port-a012d174336358f997ddcb0099c0b01499b053e4.tar.gz
plan9port-a012d174336358f997ddcb0099c0b01499b053e4.tar.bz2
plan9port-a012d174336358f997ddcb0099c0b01499b053e4.zip
time: print 1s of milliseconds
-rw-r--r--src/cmd/time.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmd/time.c b/src/cmd/time.c
index 3b52216b..16379a89 100644
--- a/src/cmd/time.c
+++ b/src/cmd/time.c
@@ -47,11 +47,11 @@ main(int argc, char *argv[])
error("wait");
}
l = w->time[0];
- add("%ld.%.2ldu", l/1000, (l%1000)/10);
+ add("%ld.%.3ldu", l/1000, l%1000);
l = w->time[1];
- add("%ld.%.2lds", l/1000, (l%1000)/10);
+ add("%ld.%.3lds", l/1000, l%1000);
l = (t1-t0)/1000000;
- add("%ld.%.2ldr", l/1000, (l%1000)/10);
+ add("%ld.%.3ldr", l/1000, l%1000);
add("\t");
for(i=1; i<argc; i++){
add("%s", argv[i], 0);