initvals: fix type of the second argument of 'main'

The patch fixes the followinf warning
(with CFLAGS=-Wmain):

initvals.c:673: warning: second argument of ‘main’ should be ‘char **’

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
This commit is contained in:
Gabor Juhos 2011-12-19 22:24:55 +01:00 committed by Luis R. Rodriguez
parent 3528beae27
commit 9d5cddff48

View file

@ -669,7 +669,7 @@ print_initvals_family(char *family, bool check)
}
}
int main(int argc, void *argv[])
int main(int argc, char *argv[])
{
if (argc > 1) {