From ea1fd2e63ed831ae038b2778e1474517bfb15da3 Mon Sep 17 00:00:00 2001 From: Vikram Seth Date: Fri, 23 Mar 2012 08:09:09 +0100 Subject: [PATCH] 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 --- stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.25.1