From e087ed7aa4c77edab33a48132fd950f2a6502456 Mon Sep 17 00:00:00 2001 From: Karol Trzcinski Date: Wed, 25 Mar 2020 07:40:45 +0100 Subject: [PATCH] tools: logger: Align logs header to content Double space in formatting string led to little mismatch between header and content in output logger file. Signed-off-by: Karol Trzcinski --- tools/logger/convert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/logger/convert.c b/tools/logger/convert.c index 4793faa63..717c53689 100644 --- a/tools/logger/convert.c +++ b/tools/logger/convert.c @@ -167,7 +167,7 @@ static double to_usecs(uint64_t time, double clk) static inline void print_table_header(FILE *out_fd) { - fprintf(out_fd, "%18s %18s %2s %-18s %-29s %s\n", + fprintf(out_fd, "%18s %18s %2s %-18s %-29s %s\n", "TIMESTAMP", "DELTA", "C#", "COMPONENT", "LOCATION", "CONTENT"); fflush(out_fd);