X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/92980e9076469956e1e2cb94df97d0f8d873114a..1fb35ade9b6e001eba8c70500d1cdbb8de0ebc20:/src/common/file.cpp diff --git a/src/common/file.cpp b/src/common/file.cpp index 99582fae28..d5a136e704 100644 --- a/src/common/file.cpp +++ b/src/common/file.cpp @@ -502,9 +502,9 @@ bool wxTempFile::Open(const wxString& strName) #ifdef __UNIX__ // the temp file should have the same permissions as the original one mode_t mode; - + wxStructStat st; - if ( stat(m_strName.fn_str(), &st) == 0 ) + if ( stat( (const char*) m_strName.fn_str(), &st) == 0 ) { mode = st.st_mode; } @@ -517,7 +517,7 @@ bool wxTempFile::Open(const wxString& strName) umask(mask); } - if ( chmod(m_strTemp.mb_str(), mode) == -1 ) + if ( chmod( (const char*) m_strTemp.fn_str(), mode) == -1 ) { wxLogSysError(_("Failed to set temporary file permissions")); }