[PATCH] Add support for giving multiple job files
diff --git a/fio.c b/fio.c
index 65d9498..3cc0989 100644
--- a/fio.c
+++ b/fio.c
@@ -1552,7 +1552,7 @@
 		else if (t_eta)
 			eta_sec = t_eta;
 		else
-			eta_sec = INT_MAX;
+			eta_sec = 0;
 	} else {
 		/*
 		 * thread is already done or waiting for fsync
@@ -1803,7 +1803,6 @@
 		 * Wait for the started threads to transition to
 		 * TD_INITIALIZED.
 		 */
-		printf("fio: Waiting for threads to initialize...\n");
 		gettimeofday(&this_start, NULL);
 		left = this_jobs;
 		while (left) {
@@ -1842,7 +1841,6 @@
 		/*
 		 * start created threads (TD_INITIALIZED -> TD_RUNNING).
 		 */
-		printf("fio: Go for launch\n");
 		for (i = 0; i < thread_number; i++) {
 			td = &threads[i];