diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-06 15:26:42 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-06 15:26:42 (GMT) |
commit | 7804b053f112cb18a606e4796e5249c4d09331be (patch) | |
tree | 2d7b0f153d2218216443f478e485f0638a372f35 /Source/CTest/Curl/getdate.c | |
parent | b9eed3ea186a4a1a034b78a3ddac035e856e23b7 (diff) | |
download | CMake-7804b053f112cb18a606e4796e5249c4d09331be.zip CMake-7804b053f112cb18a606e4796e5249c4d09331be.tar.gz CMake-7804b053f112cb18a606e4796e5249c4d09331be.tar.bz2 |
ERR: Remove warnings on icc
Diffstat (limited to 'Source/CTest/Curl/getdate.c')
-rw-r--r-- | Source/CTest/Curl/getdate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/Curl/getdate.c b/Source/CTest/Curl/getdate.c index 6e521bc..33fedfa 100644 --- a/Source/CTest/Curl/getdate.c +++ b/Source/CTest/Curl/getdate.c @@ -2025,7 +2025,7 @@ curl_getdate (const char *p, const time_t *now) cookie.yyHaveTime = 0; cookie.yyHaveZone = 0; - if (yyparse (&cookie) + if (yyparse ((void*)&cookie) || cookie.yyHaveTime > 1 || cookie.yyHaveZone > 1 || cookie.yyHaveDate > 1 || cookie.yyHaveDay > 1) return -1; |