mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 01:54:09 +08:00
selftests: sched: Remove initialization to 0 for a static variable
Fixes following checkpatch.pl issue: ERROR: do not initialise statics to 0 Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
This commit is contained in:
parent
49360d9784
commit
130a838799
@ -72,7 +72,7 @@ struct child_args {
|
||||
|
||||
static struct child_args procs[MAX_PROCESSES];
|
||||
static int num_processes = 2;
|
||||
static int need_cleanup = 0;
|
||||
static int need_cleanup;
|
||||
|
||||
static int _prctl(int option, unsigned long arg2, unsigned long arg3, unsigned long arg4,
|
||||
unsigned long arg5)
|
||||
|
Loading…
Reference in New Issue
Block a user