]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filefn.cpp
don't queue sounds
[wxWidgets.git] / src / common / filefn.cpp
index 0df53ba15806e471152452e80f1854feddfd7b87..92692711ad1f04d62ee085db6db1ac0ab97cba9c 100644 (file)
@@ -913,7 +913,7 @@ wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
     int         i;
     int         j;
     OSErr       theErr;
-    OSStatus    theStatus;
+    OSStatus    theStatus = noErr;
     Boolean     isDirectory = FALSE;
     Str255    theParentPath = "\p";
     FSSpec      theParentSpec;
@@ -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