projects
/
linux-2.6-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bde6fb3
)
kallsyms: use \t instead of a tab in printf()
author
Masahiro Yamada
<masahiroy@kernel.org>
Sat, 20 Jul 2024 10:30:13 +0000
(19:30 +0900)
committer
Masahiro 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
patch
|
blob
|
blame
|
history
diff --git
a/scripts/kallsyms.c
b/scripts/kallsyms.c
index f0ea8c922dc886a1d9ca1b7990b73db9dc4feaf8..164c04d2206144fc0b7646e4f0d74f874627c17d 100644
(file)
--- 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");