Skip to content

Commit 193cb83

Browse files
Shaomin Dengrichardweinberger
authored andcommitted
uml: Remove the initialization of statics to 0
It is always unnecessary to initialise statics to 0. Signed-off-by: Shaomin Deng <dengshaomin@cdjrlc.com> Signed-off-by: Richard Weinberger <richard@nod.at>
1 parent 4dc5a32 commit 193cb83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/um/kernel/umid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include <os.h>
1010

1111
/* Changed by set_umid_arg */
12-
static int umid_inited = 0;
12+
static int umid_inited;
1313

1414
static int __init set_umid_arg(char *name, int *add)
1515
{

0 commit comments

Comments
 (0)