diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-13 14:01:04 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-13 14:01:04 (GMT) |
commit | 3f75f0ea1e0404951797c2918d93465b9c612ea0 (patch) | |
tree | 1e2be9f03c86db340d683e06ef38efdbfd2b71fc /Source/CTest/Curl/escape.c | |
parent | a4c8aee1f489fb0b5e7bdc1fe44f964b6f5d1d4d (diff) | |
download | CMake-3f75f0ea1e0404951797c2918d93465b9c612ea0.zip CMake-3f75f0ea1e0404951797c2918d93465b9c612ea0.tar.gz CMake-3f75f0ea1e0404951797c2918d93465b9c612ea0.tar.bz2 |
COMP: Attempt to remove warnings on borland
Diffstat (limited to 'Source/CTest/Curl/escape.c')
-rw-r--r-- | Source/CTest/Curl/escape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/Curl/escape.c b/Source/CTest/Curl/escape.c index d418e5b..2b9a883 100644 --- a/Source/CTest/Curl/escape.c +++ b/Source/CTest/Curl/escape.c @@ -43,7 +43,7 @@ char *curl_escape(const char *string, int inlength) { size_t alloc = (inlength?(size_t)inlength:strlen(string))+1; char *ns; - char *testing_ptr = NULL; + char *testing_ptr; unsigned char in; size_t newlen = alloc; int strindex=0; |