From 724957167e4f7c7d4d5a88f52ca3a21e1e3e031c Mon Sep 17 00:00:00 2001 From: zdenop Date: Thu, 8 Nov 2018 23:10:14 +0100 Subject: [PATCH] fix typo in non VS build --- src/ccutil/fileio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ccutil/fileio.cpp b/src/ccutil/fileio.cpp index d6737c2b0d..36e8f2acfd 100644 --- a/src/ccutil/fileio.cpp +++ b/src/ccutil/fileio.cpp @@ -87,7 +87,7 @@ std::string File::JoinPath(const std::string& prefix, const std::string& suffix) bool File::Delete(const char* pathname) { #if !defined(_WIN32) || defined(__MINGW32__) - const int status = unlink(pathname) + const int status = unlink(pathname); #else const int status = _unlink(pathname); #endif