From: Vadim Zeitlin Date: Mon, 27 Sep 2004 11:29:12 +0000 (+0000) Subject: warning fix after huge file patch X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ed7c11abc829a8f7becc92ee438866e36f2216fe warning fix after huge file patch git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 77f765e2d2..8d5410623a 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -1120,7 +1120,7 @@ bool wxMsgCatalogFile::Load(const wxChar *szDirPrefix, const wxChar *szName0, return false; // get the file size - off_t nSize = fileMsg.Length(); + size_t nSize = fileMsg.Length(); if ( nSize == wxInvalidOffset ) return false;