Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-04-16 08:30:38 +0400
committerMike Frysinger <vapier@gentoo.org>2005-04-16 08:30:38 +0400
commit4e5936ef9501da7d2f010d8c4f3703505b28b2c5 (patch)
tree0fb5b9eaab153b533ffe5b228d70f05ebf0b3b16 /networking/libiproute
parent5c63a729681991c86fc94fbe6f9f18b8cf876810 (diff)
In Bug 208, bernhardf writes:
On machines with only ANSI compliant compilers, not explitily delcaring an empty parameter list 'void' causes failure.
Diffstat (limited to 'networking/libiproute')
-rw-r--r--networking/libiproute/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c
index fa1548609..d86d4f8f5 100644
--- a/networking/libiproute/utils.c
+++ b/networking/libiproute/utils.c
@@ -238,7 +238,7 @@ __u32 get_addr32(char *name)
return addr.data[0];
}
-void incomplete_command()
+void incomplete_command(void)
{
bb_error_msg("Command line is not complete. Try option \"help\"");
exit(-1);