From 2db7fa3882fa45d2953f56dcd3510e8d4d23ca34 Mon Sep 17 00:00:00 2001 From: short <> Date: Tue, 21 Nov 2000 14:59:33 +0000 Subject: [PATCH] Cosmetic: Output formatting tweaked: '\t' vs. ' ' --- timeplan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/timeplan.c b/timeplan.c index 3847022..c489ce0 100644 --- a/timeplan.c +++ b/timeplan.c @@ -131,7 +131,7 @@ dump: else origtot++; } if (action) - printf("=%02d/%02d:%02d\t%4d\t%s\n",days,hours,mins, + printf("=%03d/%02d:%02d %4d\t%s\n",days,hours,mins, action->stores,action->what); return(origtot); } @@ -157,7 +157,7 @@ struct action **sorta FAKEUSE,**sorti FAKEUSE; int totalwidth=dumpaction(NULL); while (totalwidth-->5) putchar(' '); - puts("Total Da Hr Mi\tStor\tDescription"); + puts("Total Day Hr Mi Stor\tDescription"); if (!(sorta=malloc(sizeof(*sorta)*hashtable_tot))) { fprintf(ERRH1"malloc() of %d pointers"ERRNO1,ERRH2,hashtable_tot,ERRNO2); exit(EXIT_FAILURE); -- 1.8.3.1