From: Masahiro Yamada Date: Sat, 20 Jul 2024 10:30:13 +0000 (+0900) Subject: kallsyms: use \t instead of a tab in printf() X-Git-Tag: v6.11-rc1~62^2~4 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b07e18100940418803d289a91c7d859af006b8e7;p=linux-2.6-block.git 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: Masahiro Yamada --- diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index f0ea8c922dc8..164c04d22061 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c @@ -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");