diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-09-15 08:13:43 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-09-15 08:13:43 +0000 |
commit | c4f72d1426e03f046ac54a00d733a4a52c3a5d4b (patch) | |
tree | 2d37a46a21420e3bf0c404addb740e93556ecfe4 /util-linux | |
parent | 45638df23051a0798721aa568f5a23696910e287 (diff) | |
download | busybox-w32-c4f72d1426e03f046ac54a00d733a4a52c3a5d4b.tar.gz busybox-w32-c4f72d1426e03f046ac54a00d733a4a52c3a5d4b.tar.bz2 busybox-w32-c4f72d1426e03f046ac54a00d733a4a52c3a5d4b.zip |
fix function prototype
Diffstat (limited to 'util-linux')
-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 e589077a6..70dcb24e9 100644 --- a/util-linux/rdate.c +++ b/util-linux/rdate.c | |||
@@ -38,7 +38,7 @@ | |||
38 | 38 | ||
39 | static const int RFC_868_BIAS = 2208988800UL; | 39 | static const int RFC_868_BIAS = 2208988800UL; |
40 | 40 | ||
41 | static void socket_timeout() | 41 | static 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 | } |