summaryrefslogtreecommitdiff
path: root/src/mgr/curlftpt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mgr/curlftpt.cpp')
-rw-r--r--src/mgr/curlftpt.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mgr/curlftpt.cpp b/src/mgr/curlftpt.cpp
index 63eacb1..b287405 100644
--- a/src/mgr/curlftpt.cpp
+++ b/src/mgr/curlftpt.cpp
@@ -2,7 +2,7 @@
*
* curlftpt.cpp - CURLFTPTransport
*
- * $Id: curlftpt.cpp 2980 2013-09-14 21:51:47Z scribe $
+ * $Id: curlftpt.cpp 3439 2016-10-23 08:32:02Z scribe $
*
* Copyright 2004-2013 CrossWire Bible Society (http://www.crosswire.org)
* CrossWire Bible Society
@@ -63,12 +63,12 @@ namespace {
return -1; /* failure, can't open file to write */
}
if (out->destBuf) {
- int s = out->destBuf->size();
+ int s = (int)out->destBuf->size();
out->destBuf->size(s+(size*nmemb));
memcpy(out->destBuf->getRawData()+s, buffer, size*nmemb);
- return nmemb;
+ return (int)nmemb;
}
- return fwrite(buffer, size, nmemb, out->stream);
+ return (int)fwrite(buffer, size, nmemb, out->stream);
}