]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed compile error with gcc-3.2.
authorStefan Neis <Stefan.Neis@t-online.de>
Sat, 31 Jan 2004 12:44:47 +0000 (12:44 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Sat, 31 Jan 2004 12:44:47 +0000 (12:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25430 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filefn.cpp

index 329a52695c2d485a3d746b5635800029612715bf..92692711ad1f04d62ee085db6db1ac0ab97cba9c 100644 (file)
@@ -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