From: mingzhu wang Date: Tue, 9 Jun 2026 02:15:00 +0000 (+0000) Subject: kernel: exit: fix coding style missing spaces X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=d7337cad4dbe6caf9535d3539daed353dd425dc1;p=thirdparty%2Flinux.git kernel: exit: fix coding style missing spaces Add spaces around bitwise AND and shift operators in sys_exit() to comply with the Linux kernel coding style. Signed-off-by: mingzhu wang Link: https://patch.msgid.link/20260609021436.1739-1-mingzhu.wang@transsion.com Signed-off-by: Christian Brauner (Amutable) --- diff --git a/kernel/exit.c b/kernel/exit.c index 1056422bc101..7ac52196d819 100644 --- a/kernel/exit.c +++ b/kernel/exit.c @@ -1111,7 +1111,7 @@ void __noreturn make_task_dead(int signr) SYSCALL_DEFINE1(exit, int, error_code) { - do_exit((error_code&0xff)<<8); + do_exit((error_code & 0xff) << 8); } /*