summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/escape.c
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-01 15:29:15 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-01 15:29:15 (GMT)
commit8174deb9e998199fc4aa828664d57dedc3f8a683 (patch)
treef8d3845260623d8240db1db2109102967df512a9 /Source/CTest/Curl/escape.c
parent6e143754beaf7c275c73b5c501419e3ac0b40839 (diff)
downloadCMake-8174deb9e998199fc4aa828664d57dedc3f8a683.zip
CMake-8174deb9e998199fc4aa828664d57dedc3f8a683.tar.gz
CMake-8174deb9e998199fc4aa828664d57dedc3f8a683.tar.bz2
ERR: Remove warnings
Diffstat (limited to 'Source/CTest/Curl/escape.c')
-rw-r--r--Source/CTest/Curl/escape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/Curl/escape.c b/Source/CTest/Curl/escape.c
index b35333d..fbe4b2c 100644
--- a/Source/CTest/Curl/escape.c
+++ b/Source/CTest/Curl/escape.c
@@ -96,7 +96,7 @@ char *curl_unescape(const char *string, int length)
if('%' == in) {
/* encoded part */
if(sscanf(string+1, "%02X", &hex)) {
- in = hex;
+ in = (unsigned char)hex;
string+=2;
alloc-=2;
}