diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c index d736879..7d9e01d 100644 --- a/src/common.c +++ b/src/common.c @@ -53,7 +53,7 @@ void print_front(struct front_item * b){ printf("Profit, Weight, Time\n"); while(b!=NULL){ clock_t t = b->time - beg->time; - printf("%.02f,\t%.02f,\t%f\n", b->i.p, b->i.w, ((double)t)/CLOCKS_PER_SEC); + printf("%.02f,%.02f,%f\n", b->i.p, b->i.w, ((double)t)/CLOCKS_PER_SEC); b = b->next; } } |