X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/216a72f3b9ab2bf72f489aceac0093138a6e7707..c4709ea55c2299c61ecda2ac350370f656de16ca:/src/common/datstrm.cpp?ds=sidebyside diff --git a/src/common/datstrm.cpp b/src/common/datstrm.cpp index 656b628b35..a1961c3f02 100644 --- a/src/common/datstrm.cpp +++ b/src/common/datstrm.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: datstrm.cpp +// Name: src/common/datstrm.cpp // Purpose: Data stream classes // Author: Guilhem Lavaux // Modified by: Mickael Gilabert @@ -296,7 +296,7 @@ void wxDataInputStream::ReadLL(wxLongLong *buffer, size_t size) wxLongLong wxDataInputStream::ReadLL(void) { wxLongLong ll; - DoReadLL(&ll, 1, m_input, m_be_order); + DoReadLL(&ll, (size_t)1, m_input, m_be_order); return ll; } #endif // wxUSE_LONGLONG @@ -724,4 +724,3 @@ wxDataOutputStream& wxDataOutputStream::operator<<(float f) #endif // wxUSE_STREAMS -