aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-09-15 08:13:43 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-09-15 08:13:43 +0000
commitfc2b3bc3efa6de860a1d3a961c700650e1a590eb (patch)
tree2d37a46a21420e3bf0c404addb740e93556ecfe4
parent699db152850fdeedad013e03aee5f21316c390fe (diff)
downloadbusybox-w32-fc2b3bc3efa6de860a1d3a961c700650e1a590eb.tar.gz
busybox-w32-fc2b3bc3efa6de860a1d3a961c700650e1a590eb.tar.bz2
busybox-w32-fc2b3bc3efa6de860a1d3a961c700650e1a590eb.zip
fix function prototype
git-svn-id: svn://busybox.net/trunk/busybox@7525 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--util-linux/rdate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index e589077a6..70dcb24e9 100644
--- a/util-linux/rdate.c
+++ b/util-linux/rdate.c
@@ -38,7 +38,7 @@
38 38
39static const int RFC_868_BIAS = 2208988800UL; 39static const int RFC_868_BIAS = 2208988800UL;
40 40
41static void socket_timeout() 41static void socket_timeout(void)
42{ 42{
43 bb_error_msg_and_die("timeout connecting to time server"); 43 bb_error_msg_and_die("timeout connecting to time server");
44} 44}