Commit b07e1810 authored by Masahiro Yamada's avatar Masahiro Yamada

kallsyms: use \t instead of a tab in printf()

This string literal uses a mixture of \t escape sequences and a tab.

Use \t consistently.
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent bde6fb37
......@@ -521,7 +521,7 @@ static void write_src(void)
table[i]->addr);
exit(EXIT_FAILURE);
}
printf("\t.long\t%#x /* %s */\n", (int)offset, table[i]->sym);
printf("\t.long\t%#x\t/* %s */\n", (int)offset, table[i]->sym);
}
printf("\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment