Compilation fix for gcc-3.x.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@25922 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1326,7 +1326,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
|
||||
|
||||
|
Reference in New Issue
Block a user