]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/volume.cpp
Fixed some warnings
[wxWidgets.git] / src / msw / volume.cpp
index 397eb7e2280399974498a0de757510b622695107..06c454ebc9677b964cb392e5460618afcf96fb5e 100644 (file)
@@ -506,12 +506,13 @@ bool wxFSVolumeBase::Create(const wxString& name)
     if (!rc)
     {
         wxLogError(_("Cannot read typename from '%s'!"), m_volName.c_str());
     if (!rc)
     {
         wxLogError(_("Cannot read typename from '%s'!"), m_volName.c_str());
-        return m_isOk;
+        return false;
     }
     m_dispName = fi.szDisplayName;
 
     // all tests passed.
     }
     m_dispName = fi.szDisplayName;
 
     // all tests passed.
-    return m_isOk = true;
+    m_isOk = true;
+    return true;
 } // Create
 
 //=============================================================================
 } // Create
 
 //=============================================================================