Commit 130a8387 authored by Atul Kumar Pant's avatar Atul Kumar Pant Committed by Shuah Khan

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: default avatarAtul Kumar Pant <atulpant.linux@gmail.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 49360d97
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment