diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-05 14:48:19 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-05 14:48:19 (GMT) |
commit | d859ad258c25477aae52b0dac28ceb891ef0661d (patch) | |
tree | b947ac369b02fd3775f27a6e868e6c6962db4f95 /Source/CTest/Curl/url.c | |
parent | c70beb4bee01898345c5d8a0279c39925542eea3 (diff) | |
download | CMake-d859ad258c25477aae52b0dac28ceb891ef0661d.zip CMake-d859ad258c25477aae52b0dac28ceb891ef0661d.tar.gz CMake-d859ad258c25477aae52b0dac28ceb891ef0661d.tar.bz2 |
ERR: Remove warnings on Borland
Diffstat (limited to 'Source/CTest/Curl/url.c')
-rw-r--r-- | Source/CTest/Curl/url.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/CTest/Curl/url.c b/Source/CTest/Curl/url.c index 6016de1..b22510a 100644 --- a/Source/CTest/Curl/url.c +++ b/Source/CTest/Curl/url.c @@ -1337,6 +1337,7 @@ ConnectionKillOne(struct SessionHandle *data) /* the winner gets the honour of being disconnected */ result = Curl_disconnect(data->state.connects[connindex]); + (void)result; /* clean the array entry */ data->state.connects[connindex] = NULL; @@ -1924,6 +1925,7 @@ static CURLcode CreateConnection(struct SessionHandle *data, } buf = data->state.buffer; /* this is our buffer */ + (void)buf; /* * So if the URL was A://B/C, |