Skip to content

Commit b07e181

Browse files
committed
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 <masahiroy@kernel.org>
1 parent bde6fb3 commit b07e181

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/kallsyms.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ static void write_src(void)
521521
table[i]->addr);
522522
exit(EXIT_FAILURE);
523523
}
524-
printf("\t.long\t%#x /* %s */\n", (int)offset, table[i]->sym);
524+
printf("\t.long\t%#x\t/* %s */\n", (int)offset, table[i]->sym);
525525
}
526526
printf("\n");
527527

0 commit comments

Comments
 (0)