From: short <> Date: Tue, 21 Nov 2000 14:59:33 +0000 (+0000) Subject: Cosmetic: Output formatting tweaked: '\t' vs. ' ' X-Git-Tag: rel1_0~8 X-Git-Url: https://git.jankratochvil.net/?p=timeplan.git;a=commitdiff_plain;h=2db7fa3882fa45d2953f56dcd3510e8d4d23ca34;ds=sidebyside Cosmetic: Output formatting tweaked: '\t' vs. ' ' --- 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);