summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/version.c
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-06 15:26:42 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-06 15:26:42 (GMT)
commit7804b053f112cb18a606e4796e5249c4d09331be (patch)
tree2d7b0f153d2218216443f478e485f0638a372f35 /Source/CTest/Curl/version.c
parentb9eed3ea186a4a1a034b78a3ddac035e856e23b7 (diff)
downloadCMake-7804b053f112cb18a606e4796e5249c4d09331be.zip
CMake-7804b053f112cb18a606e4796e5249c4d09331be.tar.gz
CMake-7804b053f112cb18a606e4796e5249c4d09331be.tar.bz2
ERR: Remove warnings on icc
Diffstat (limited to 'Source/CTest/Curl/version.c')
-rw-r--r--Source/CTest/Curl/version.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/Curl/version.c b/Source/CTest/Curl/version.c
index 9f3e390..f442b16 100644
--- a/Source/CTest/Curl/version.c
+++ b/Source/CTest/Curl/version.c
@@ -91,7 +91,7 @@ char *curl_version(void)
{
static char version[200];
char *ptr;
- long num;
+ long num=0;
strcpy(version, LIBCURL_NAME "/" LIBCURL_VERSION );
ptr=strchr(version, '\0');