summaryrefslogtreecommitdiff
path: root/src/pyfstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pyfstream.h')
-rw-r--r--src/pyfstream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pyfstream.h b/src/pyfstream.h
index 2fb9e1a7..49b072f2 100644
--- a/src/pyfstream.h
+++ b/src/pyfstream.h
@@ -68,7 +68,7 @@ protected:
// write multiple characters
virtual std::streamsize xsputn (const char* s, std::streamsize num) {
char * buf = new char[num + 1];
- std::strncpy(buf, s, num);
+ std::strncpy(buf, s, static_cast<std::size_t>(num));
buf[num] = '\0';
if (PyFile_WriteString(buf, reinterpret_cast<PyObject *>(fo)) < 0)
num = 0;
@@ -148,7 +148,7 @@ protected:
* - but at most size of putback area
*/
size_t numPutback;
- numPutback = gptr() - eback();
+ numPutback = static_cast<size_t>(gptr() - eback());
if (numPutback > pbSize) {
numPutback = pbSize;
}