summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChen Ni <nichen@iscas.ac.cn>2025-04-07 10:54:05 +0300
committerJosh Poimboeuf <jpoimboe@kernel.org>2025-10-15 00:45:20 +0300
commit2e985fdb7e54293695a2a386e06e59d441efbe0f (patch)
treee9e7f0ab8c97ce897a5f040a31368689ca544d66
parent3a8660878839faadb4f1a6dd72c3179c1df56787 (diff)
downloadlinux-2e985fdb7e54293695a2a386e06e59d441efbe0f.tar.xz
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>
-rw-r--r--tools/objtool/builtin-check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/objtool/builtin-check.c b/tools/objtool/builtin-check.c
index 0f6b197cfcb0..fcd4a6517896 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)