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/getenv.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/getenv.c')
-rw-r--r-- | Source/CTest/Curl/getenv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CTest/Curl/getenv.c b/Source/CTest/Curl/getenv.c index e19bad2..efb4be1 100644 --- a/Source/CTest/Curl/getenv.c +++ b/Source/CTest/Curl/getenv.c @@ -53,7 +53,8 @@ char *GetEnv(const char *variable) #ifdef VMS char *env = getenv(variable); if (env && strcmp("HOME",variable) == 0) { - env = decc$translate_vms(env); + /* VMS does not work because of warning on icc */ + /* env = decc$translate_vms(env); */ } #else /* no length control */ |