mirror of
https://github.com/sheumann/hush.git
synced 2024-12-26 10:32:02 +00:00
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},
|
||||
{"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
Block a user