mirror of https://github.com/thesofproject/sof.git
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:
parent
ae53aebcff
commit
e087ed7aa4
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue