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 | |
parent | 93c0d9f090eb17dc3c42c341af7aad19d8c87f52 (diff) | |
download | busybox-9027bcf2f4b8c9352183544d3fcc35d12b9affec.tar.gz |
Fixed a warning about missing initializer
-rw-r--r-- | init.c | 2 | ||||
-rw-r--r-- | init/init.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 */ 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 */ |