]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
kallsyms: use \t instead of a tab in printf()
authorMasahiro Yamada <masahiroy@kernel.org>
Sat, 20 Jul 2024 10:30:13 +0000 (19:30 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Sun, 21 Jul 2024 16:24:22 +0000 (01:24 +0900)
This string literal uses a mixture of \t escape sequences and a tab.

Use \t consistently.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/kallsyms.c

index f0ea8c922dc886a1d9ca1b7990b73db9dc4feaf8..164c04d2206144fc0b7646e4f0d74f874627c17d 100644 (file)
@@ -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");