Fixed a warning about missing initializer

This commit is contained in:
Pavel Roskin 2000-07-14 15:44:25 +00:00
parent 93c0d9f090
commit 9027bcf2f4
2 changed files with 2 additions and 2 deletions

2
init.c
View File

@ -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 */

View File

@ -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 */