summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/transfer.c
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CTest/Curl/transfer.c')
-rw-r--r--Source/CTest/Curl/transfer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CTest/Curl/transfer.c b/Source/CTest/Curl/transfer.c
index 75cdc69..df253b1 100644
--- a/Source/CTest/Curl/transfer.c
+++ b/Source/CTest/Curl/transfer.c
@@ -1095,7 +1095,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
}
/* Now update the "done" boolean we return */
- *done = !k->keepon;
+ *done = (bool)!k->keepon;
return CURLE_OK;
}
@@ -1310,6 +1310,7 @@ CURLcode Curl_pretransfer(struct SessionHandle *data)
CURLcode Curl_posttransfer(struct SessionHandle *data)
{
+ (void)data;
#if defined(HAVE_SIGNAL) && defined(SIGPIPE)
/* restore the signal handler for SIGPIPE before we get back */
if(!data->set.no_signal)