diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-11-05 12:37:22 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-11-05 12:37:22 +0000 |
commit | 5623e0bb0ef5a0c55aa2ef81ece4b50a6bd77c86 (patch) | |
tree | 9aa4828b40313c8a41a461f89e613a5ebb30751b /lib/timeval.h | |
parent | 3d438d8d64c7d2e03a1acc7a39d6a7cfd0b264c6 (diff) | |
download | curl-5623e0bb0ef5a0c55aa2ef81ece4b50a6bd77c86.tar.gz |
corrected the Curl_tvnow prototype (-Wstrict-prototypes found it)
Diffstat (limited to 'lib/timeval.h')
-rw-r--r-- | lib/timeval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timeval.h b/lib/timeval.h index 84ab79601..c8ce59362 100644 --- a/lib/timeval.h +++ b/lib/timeval.h @@ -42,7 +42,7 @@ struct timeval { #endif #endif -struct timeval Curl_tvnow (); +struct timeval Curl_tvnow (void); /* the diff is from now on returned in number of milliseconds! */ long Curl_tvdiff (struct timeval t1, struct timeval t2); |