diff options
author | Eric Andersen | 2003-09-15 08:13:43 +0000 |
---|---|---|
committer | Eric Andersen | 2003-09-15 08:13:43 +0000 |
commit | c4f72d1426e03f046ac54a00d733a4a52c3a5d4b (patch) | |
tree | 2d37a46a21420e3bf0c404addb740e93556ecfe4 | |
parent | 45638df23051a0798721aa568f5a23696910e287 (diff) | |
download | busybox-c4f72d1426e03f046ac54a00d733a4a52c3a5d4b.zip busybox-c4f72d1426e03f046ac54a00d733a4a52c3a5d4b.tar.gz |
fix function prototype
-rw-r--r-- | util-linux/rdate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c index e589077..70dcb24 100644 --- a/util-linux/rdate.c +++ b/util-linux/rdate.c @@ -38,7 +38,7 @@ static const int RFC_868_BIAS = 2208988800UL; -static void socket_timeout() +static void socket_timeout(void) { bb_error_msg_and_die("timeout connecting to time server"); } |