From a07101ab73161f8cbcd0f9a4942ec29bb0abb4eb Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Tue, 31 Oct 2000 02:26:10 +0000 Subject: Remove vestages of a previous implimentation of "-h". Submitted by: Tony Finch --- usr.bin/time/time.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/time/time.c b/usr.bin/time/time.c index 5a35f68ee1009..48a40074c859f 100644 --- a/usr.bin/time/time.c +++ b/usr.bin/time/time.c @@ -150,9 +150,9 @@ main(argc, argv) ru.ru_stime.tv_sec, ru.ru_stime.tv_usec/10000); } else if (hflag) { humantime(out, after.tv_sec, after.tv_usec/10000); - fprintf(out, " real%c", hflag ? '\t' : ' '); + fprintf(out, " real\t"); humantime(out, ru.ru_utime.tv_sec, ru.ru_utime.tv_usec/10000); - fprintf(out, " user%c", hflag ? '\t' : ' '); + fprintf(out, " user\t"); humantime(out, ru.ru_stime.tv_sec, ru.ru_stime.tv_usec/10000); fprintf(out, " sys\n"); } else { -- cgit v1.3