diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-26 14:25:58 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-26 14:25:58 (GMT) |
commit | 163919a569a436b57be64e43de09f702805b9647 (patch) | |
tree | ae788001fb1365db6606d834b6672279ce505011 | |
parent | d6c7de2c134abad7411386c1c138fadc88424f2e (diff) | |
download | CMake-163919a569a436b57be64e43de09f702805b9647.zip CMake-163919a569a436b57be64e43de09f702805b9647.tar.gz CMake-163919a569a436b57be64e43de09f702805b9647.tar.bz2 |
COMP: Remove warning on icl
-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 fe868a8..6aca48e 100644 --- a/Source/CTest/Curl/getdate.c +++ b/Source/CTest/Curl/getdate.c @@ -2371,7 +2371,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; |