mirror of https://github.com/mirror/busybox.git
Fixed a warning about missing initializer
parent
93c0d9f090
commit
9027bcf2f4
2
init.c
2
init.c
|
@ -151,7 +151,7 @@ static const struct initActionType actions[] = {
|
|||
{"wait", WAIT},
|
||||
{"once", ONCE},
|
||||
{"ctrlaltdel", CTRLALTDEL},
|
||||
{0}
|
||||
{0, 0}
|
||||
};
|
||||
|
||||
/* Set up a linked list of initActions, to be read from inittab */
|
||||
|
|
|
@ -151,7 +151,7 @@ static const struct initActionType actions[] = {
|
|||
{"wait", WAIT},
|
||||
{"once", ONCE},
|
||||
{"ctrlaltdel", CTRLALTDEL},
|
||||
{0}
|
||||
{0, 0}
|
||||
};
|
||||
|
||||
/* Set up a linked list of initActions, to be read from inittab */
|
||||
|
|
Loading…
Reference in New Issue