summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/hash.c
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-02 13:31:52 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-02 13:31:52 (GMT)
commit1bb8d8109e7a51a30c16e5dc1481bf83ba42eda6 (patch)
treee6d1ed87ca626d0945df3ad76d9185e02f6aae7f /Source/CTest/Curl/hash.c
parent7cefbad8dc4f6aa73781a98e758679b5c5dc4fbe (diff)
downloadCMake-1bb8d8109e7a51a30c16e5dc1481bf83ba42eda6.zip
CMake-1bb8d8109e7a51a30c16e5dc1481bf83ba42eda6.tar.gz
CMake-1bb8d8109e7a51a30c16e5dc1481bf83ba42eda6.tar.bz2
ERR: Remove warnings on Visual Studio 7
Diffstat (limited to 'Source/CTest/Curl/hash.c')
-rw-r--r--Source/CTest/Curl/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/Curl/hash.c b/Source/CTest/Curl/hash.c
index 56e7077..6d4ce2e 100644
--- a/Source/CTest/Curl/hash.c
+++ b/Source/CTest/Curl/hash.c
@@ -282,7 +282,7 @@ Curl_hash_clean_with_criterium(curl_hash *h, void *user,
int
Curl_hash_count(curl_hash *h)
{
- return h->size;
+ return (int)h->size;
}
/* }}} */