All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kernel: exit.c: fix a spacing coding style
@ 2021-02-08  5:59 jiahao
  0 siblings, 0 replies; only message in thread
From: jiahao @ 2021-02-08  5:59 UTC (permalink / raw)
  To: christian.brauner, akpm, ebiederm, jiahao; +Cc: linux-kernel

Add some spaces before and after the operator.

Signed-off-by: jiahao <jiahao@xiaomi.com>
---
 kernel/exit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/exit.c b/kernel/exit.c
index 04029e3..ffc507e 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -888,7 +888,7 @@ EXPORT_SYMBOL(complete_and_exit);
 
 SYSCALL_DEFINE1(exit, int, error_code)
 {
-	do_exit((error_code&0xff)<<8);
+	do_exit((error_code & 0xff) << 8);
 }
 
 /*
-- 
2.7.4


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-02-08  6:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-08  5:59 [PATCH] kernel: exit.c: fix a spacing coding style jiahao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.