projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ccf30f
)
objtool: Remove unneeded semicolon
author
Chen Ni
<nichen@iscas.ac.cn>
Mon, 20 Oct 2025 02:09:16 +0000
(10:09 +0800)
committer
Josh Poimboeuf
<jpoimboe@kernel.org>
Thu, 30 Oct 2025 15:29:46 +0000
(08:29 -0700)
Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
semantic patch at scripts/coccinelle/misc/semicolon.cocci.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link:
https://patch.msgid.link/20251020020916.1070369-1-nichen@iscas.ac.cn
Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
tools/objtool/elf.c
patch
|
blob
|
history
diff --git
a/tools/objtool/elf.c
b/tools/objtool/elf.c
index
5feeefc
..
3f20b25
100644
(file)
--- a/
tools/objtool/elf.c
+++ b/
tools/objtool/elf.c
@@
-451,7
+451,7
@@
static const char *demangle_name(struct symbol *sym)
str[i + 1] = '\0';
break;
}
- }
;
+ }
return str;
}