From: Chen Ni Date: Mon, 7 Apr 2025 07:54:05 +0000 (+0800) Subject: objtool: Remove unneeded semicolon X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e985fdb7e54293695a2a386e06e59d441efbe0f;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Josh Poimboeuf --- diff --git a/tools/objtool/builtin-check.c b/tools/objtool/builtin-check.c index 0f6b197cfcb03..fcd4a65178969 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)