From: Stefan Neis Date: Sat, 31 Jan 2004 12:44:47 +0000 (+0000) Subject: Fixed compile error with gcc-3.2. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1d4f9cb74dc216935f4f15219cd9a581e1bd5885 Fixed compile error with gcc-3.2. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25430 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index 329a52695c..92692711ad 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -1396,7 +1396,7 @@ bool wxPathExists(const wxChar *pszPathName) #ifdef __OS2__ // OS/2 can't handle "d:", it wants either "d:\" or "d:." - if (strPath.length() == 2 && strPath[1] == _T(':')) + if (strPath.length() == 2 && strPath[1u] == _T(':')) strPath << _T('.'); #endif