consolidate setup output and timer timeout message

This commit is contained in:
Axel Kohlmeyer
2015-10-25 17:27:08 -04:00
parent dfa33f258a
commit a5d5791be7
6 changed files with 13 additions and 24 deletions

View File

@ -237,7 +237,7 @@ void Timer::print_timeout(FILE *fp)
s = (s - seconds) / 60;
const int minutes = s % 60;
const int hours = (s - minutes) / 60;
fprintf(fp," Walltime left: %d:%02d:%02d.%02d\n",
fprintf(fp," Walltime left : %d:%02d:%02d.%02d\n",
hours,minutes,seconds,hs);
}
}