diff options
author | Pavel Roskin <proski@gnu.org> | 2000-07-14 15:44:25 +0000 |
---|---|---|
committer | Pavel Roskin <proski@gnu.org> | 2000-07-14 15:44:25 +0000 |
commit | 9027bcf2f4b8c9352183544d3fcc35d12b9affec (patch) | |
tree | d697a0514067abf933c7a176e8e34c4ee38f584e /init | |
parent | 93c0d9f090eb17dc3c42c341af7aad19d8c87f52 (diff) |
Fixed a warning about missing initializer
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c index f38d154b7..5a894392b 100644 --- a/init/init.c +++ b/init/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 */ |