]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/zipstrm.cpp
Applied some of the SGI fixes. Don't know about the
[wxWidgets.git] / src / common / zipstrm.cpp
index 22b27e5439d88e46a4711995e47f2e9dcbc9933c..54cb0c86387a67eba8b3ba6265672efb799b8c9b 100644 (file)
@@ -58,7 +58,7 @@ wxZipInputStream::wxZipInputStream(const wxString& archive, const wxString& file
         m_lasterror = wxStream_READ_ERR;
         return;
     }
-    m_Size = zinfo.uncompressed_size;
+    m_Size = (size_t)zinfo.uncompressed_size;
 }