aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2000-07-14 15:44:25 +0000
committerPavel Roskin <proski@gnu.org>2000-07-14 15:44:25 +0000
commit9027bcf2f4b8c9352183544d3fcc35d12b9affec (patch)
treed697a0514067abf933c7a176e8e34c4ee38f584e
parent93c0d9f090eb17dc3c42c341af7aad19d8c87f52 (diff)
downloadbusybox-w32-9027bcf2f4b8c9352183544d3fcc35d12b9affec.tar.gz
busybox-w32-9027bcf2f4b8c9352183544d3fcc35d12b9affec.tar.bz2
busybox-w32-9027bcf2f4b8c9352183544d3fcc35d12b9affec.zip
Fixed a warning about missing initializer
-rw-r--r--init.c2
-rw-r--r--init/init.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/init.c b/init.c
index f38d154b7..5a894392b 100644
--- a/init.c
+++ b/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 */
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 */