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-w32-9027bcf2f4b8c9352183544d3fcc35d12b9affec.tar.gz busybox-w32-9027bcf2f4b8c9352183544d3fcc35d12b9affec.tar.bz2 busybox-w32-9027bcf2f4b8c9352183544d3fcc35d12b9affec.zip |
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[] = { | |||
151 | {"wait", WAIT}, | 151 | {"wait", WAIT}, |
152 | {"once", ONCE}, | 152 | {"once", ONCE}, |
153 | {"ctrlaltdel", CTRLALTDEL}, | 153 | {"ctrlaltdel", CTRLALTDEL}, |
154 | {0} | 154 | {0, 0} |
155 | }; | 155 | }; |
156 | 156 | ||
157 | /* Set up a linked list of initActions, to be read from inittab */ | 157 | /* 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[] = { | |||
151 | {"wait", WAIT}, | 151 | {"wait", WAIT}, |
152 | {"once", ONCE}, | 152 | {"once", ONCE}, |
153 | {"ctrlaltdel", CTRLALTDEL}, | 153 | {"ctrlaltdel", CTRLALTDEL}, |
154 | {0} | 154 | {0, 0} |
155 | }; | 155 | }; |
156 | 156 | ||
157 | /* Set up a linked list of initActions, to be read from inittab */ | 157 | /* Set up a linked list of initActions, to be read from inittab */ |