From bc8e505c79247545c46bac948c55546d731f67ce Mon Sep 17 00:00:00 2001 From: Charles A Edwards Date: Sun, 31 Jul 2016 16:26:38 +0100 Subject: [PATCH] Removed unwanted "return" Removed unwanted "return" --- src/tools/Extractor_projects/shared/ExtractorCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/Extractor_projects/shared/ExtractorCommon.cpp b/src/tools/Extractor_projects/shared/ExtractorCommon.cpp index e236d59b0..19f2e1005 100644 --- a/src/tools/Extractor_projects/shared/ExtractorCommon.cpp +++ b/src/tools/Extractor_projects/shared/ExtractorCommon.cpp @@ -394,7 +394,7 @@ bool CreateDir(const std::string& sPath) if (_mkdir(sPath.c_str()) == 0) return 1; #else - if (_return mkdir(sPath.c_str(), 0777) == 0) + if (mkdir(sPath.c_str(), 0777) == 0) return 1; #endif return 0; // failed to create the directory