From 37f41a284d633babeb152dbc0bf0248058fc25c9 Mon Sep 17 00:00:00 2001 From: Alexandre Jesus Date: Fri, 16 Sep 2016 01:55:04 +0100 Subject: Dont use tabs on print_front --- src/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- cgit v1.2.3