Fixed a warning about missing initializer
This commit is contained in:
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 */
|
||||||
|
Reference in New Issue
Block a user