diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-13 07:53:06 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-13 07:53:06 +0000 |
commit | 4ae3bd71ea5b29f60cfe7835c171661b5066081a (patch) | |
tree | 415884fba280658730568c8066d2eec2a091139c /lib/timeval.c | |
parent | a9390665b811ac68c68e2447b7282359b98d13cc (diff) |
Curl_tvnow is now properly declared with (void)
Diffstat (limited to 'lib/timeval.c')
-rw-r--r-- | lib/timeval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timeval.c b/lib/timeval.c index 74bf10695..dfae21a30 100644 --- a/lib/timeval.c +++ b/lib/timeval.c @@ -53,7 +53,7 @@ gettimeofday (struct timeval *tp, void *nothing) #endif #endif -struct timeval Curl_tvnow () +struct timeval Curl_tvnow (void) { struct timeval now; #ifdef HAVE_GETTIMEOFDAY |