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 <karolx.trzcinski@linux.intel.com>
This commit is contained in:
Karol Trzcinski 2020-03-25 07:40:45 +01:00 committed by Janusz Jankowski
parent ae53aebcff
commit e087ed7aa4
1 changed files with 1 additions and 1 deletions

View File

@ -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);