summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index eed436232c..c656e2f596 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -356,7 +356,7 @@ static bool create_dirs(const std::string &dir)
if (!dir_exists(path) && create_directory(path.c_str()))
return (false);
- path += FILE_SEPARATOR;
+ path += FILE_SEPARATOR;
}
return (true);
}