From 6f7dcf3f22d06ea3f365e5f01f27ac9af9bd9d40 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 30 Oct 2000 11:54:27 +0000 Subject: [PATCH] typecasted the localtime_r() return code to not make it not warn even if the function prototype is missting --- lib/getdate.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/getdate.y b/lib/getdate.y index 8c02832fe..0bf30c43b 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -934,7 +934,7 @@ curl_getdate (const char *p, const time_t *now) yyInput = p; Start = now ? *now : time ((time_t *) NULL); #ifdef HAVE_LOCALTIME_R - tmp = localtime_r(&Start, &keeptime); + tmp = (struct tm *)localtime_r(&Start, &keeptime); #else tmp = localtime (&Start); #endif