]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/intl.cpp
signed/unsigned comparison warning fix
[wxWidgets.git] / src / common / intl.cpp
index bf24c944ed7d014cb93aec3f5d0ff0866fee8383..4b164126f3f3fedcc9ac09dd1e9b4575b72211a4 100644 (file)
@@ -1126,7 +1126,7 @@ bool wxMsgCatalogFile::Load(const wxChar *szDirPrefix, const wxChar *szName0,
 
   // read the whole file in memory
   m_pData = new size_t8[nSize];
-  if ( fileMsg.Read(m_pData, nSize) != nSize ) {
+  if ( fileMsg.Read(m_pData, nSize) != (size_t)nSize ) {
     wxDELETEA(m_pData);
     return false;
   }