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