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 <mingzhu.wang@transsion.com>
Link: https://patch.msgid.link/20260609021436.1739-1-mingzhu.wang@transsion.com
Signed-off-by: Christian Brauner (Amutable) <brauner@kernel.org>
This commit is contained in:
mingzhu wang
2026-06-09 02:15:00 +00:00
committed by Christian Brauner
parent dc59e4fea9
commit d7337cad4d

View File

@@ -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);
}
/*