From: Pavel Roskin Date: Fri, 14 Jul 2000 15:44:25 +0000 (-0000) Subject: Fixed a warning about missing initializer X-Git-Tag: 0_47~246 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9027bcf2f4b8c9352183544d3fcc35d12b9affec;p=oweals%2Fbusybox.git Fixed a warning about missing initializer --- 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[] = { {"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 */