The following commit has been merged into the objtool/core branch of tip:
Commit-ID: 2e985fdb7e54293695a2a386e06e59d441efbe0f
Gitweb: https://git.kernel.org/tip/2e985fdb7e54293695a2a386e06e59d441efbe0f
Author: Chen Ni <nichen@iscas.ac.cn>
AuthorDate: Mon, 07 Apr 2025 15:54:05 +08:00
Committer: Josh Poimboeuf <jpoimboe@kernel.org>
CommitterDate: Tue, 14 Oct 2025 14:45:20 -07:00
objtool: Remove unneeded semicolon
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>
Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
---
tools/objtool/builtin-check.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/objtool/builtin-check.c b/tools/objtool/builtin-check.c
index 0f6b197..fcd4a65 100644
--- a/tools/objtool/builtin-check.c
+++ b/tools/objtool/builtin-check.c
@@ -243,7 +243,7 @@ static void save_argv(int argc, const char **argv)
ERROR_GLIBC("strdup(%s)", argv[i]);
exit(1);
}
- };
+ }
}
void print_args(void)