From 75e5f5287e1f8ef618f614ad853e8a9714984c38 Mon Sep 17 00:00:00 2001 From: yami-hack Date: Mon, 13 Jun 2016 16:53:17 +0800 Subject: [PATCH] Update file_util.cpp --- src/common/file_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 751d17d96..3c7dd8c69 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -929,7 +929,7 @@ bool IOFile::Open(const std::string& filename, const char openmode[]) Close(); #ifdef _WIN32 #if defined(__MINGW64__) - m_file = _wfsopen(Common::UTF8ToUTF16W(filename).c_str(), Common::UTF8ToUTF16W(openmode).c_str(),SH_DENYNO); + m_file = _wfsopen(Common::UTF8ToUTF16W(filename).c_str(), Common::UTF8ToUTF16W(openmode).c_str(), SH_DENYNO); #else _wfopen_s(&m_file, Common::UTF8ToUTF16W(filename).c_str(), Common::UTF8ToUTF16W(openmode).c_str()); #endif