From c3e69a02c46d28589e9ff3213a50e95f8fb540cb Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sun, 22 Feb 2004 18:54:13 +0000 Subject: [PATCH] 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 --- src/common/filefn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index d188632073..4999c06f80 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -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