From 5623e0bb0ef5a0c55aa2ef81ece4b50a6bd77c86 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 5 Nov 2001 12:37:22 +0000 Subject: [PATCH] corrected the Curl_tvnow prototype (-Wstrict-prototypes found it) --- lib/timeval.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);