aboutsummaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/map_extractor/System.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/map_extractor/System.cpp b/src/tools/map_extractor/System.cpp
index d824ac2a4f0..10d870e9c3a 100644
--- a/src/tools/map_extractor/System.cpp
+++ b/src/tools/map_extractor/System.cpp
@@ -135,7 +135,7 @@ TCHAR const* LocalesT[] =
void CreateDir(std::string const& path)
{
- if (chdir(Path.c_str()) == 0)
+ if (chdir(path.c_str()) == 0)
{
chdir("../");
return;