From 04420f91fec8942f1fd83347f1a21feaaacf12b1 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Fri, 22 Aug 2008 18:54:49 +0200 Subject: [PATCH] Changed formatting of time metas. --- box/box.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/box/box.c b/box/box.c index 1a84e10..40f96a9 100644 --- a/box/box.c +++ b/box/box.c @@ -107,9 +107,8 @@ final_stats(struct rusage *rus) timersub(&now, &start_time, &wall); wall_ms = wall.tv_sec*1000 + wall.tv_usec/1000; - meta_printf("time:%d.%03d\ntime_wall:%d.%03d\n", - total_ms/1000, total_ms%1000, - wall_ms/1000, wall_ms%1000); + meta_printf("time:%d.%03d\n", total_ms/1000, total_ms%1000); + meta_printf("time-wall:%d.%03d\n", wall_ms/1000, wall_ms%1000); } /*** Messages and exits ***/ -- 2.39.2