From: Vikram Seth Date: Fri, 23 Mar 2012 07:09:09 +0000 (+0100) Subject: Fix terse output with description set X-Git-Tag: fio-2.0.6~1 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ea1fd2e63ed831ae038b2778e1474517bfb15da3;p=fio.git Fix terse output with description set I have seen that using 2.05 version of fio the terse output formatting has an issue when there is a text description given in the test file. There is no newline separating the description and the next job stats. Signed-off-by: Jens Axboe --- diff --git a/stat.c b/stat.c index fa9af7c7..e72148b4 100644 --- a/stat.c +++ b/stat.c @@ -786,7 +786,7 @@ static void show_thread_status_terse_v3(struct thread_stat *ts, /* Additional output if description is set */ if (strlen(ts->description)) - log_info(";%s", ts->description); + log_info(";%s\n", ts->description); } static void show_thread_status_terse(struct thread_stat *ts,