aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorproski <proski@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-07-14 15:44:25 +0000
committerproski <proski@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-07-14 15:44:25 +0000
commit8eae13e9fc36f39b95d3fe69f611747ca0e00743 (patch)
treed697a0514067abf933c7a176e8e34c4ee38f584e /init
parent01ed00e8c926077a963908803c67423bd9bfe01d (diff)
downloadbusybox-w32-8eae13e9fc36f39b95d3fe69f611747ca0e00743.tar.gz
busybox-w32-8eae13e9fc36f39b95d3fe69f611747ca0e00743.tar.bz2
busybox-w32-8eae13e9fc36f39b95d3fe69f611747ca0e00743.zip
Fixed a warning about missing initializer
git-svn-id: svn://busybox.net/trunk/busybox@855 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'init')
-rw-r--r--init/init.c2
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[] = {
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 */