summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fios.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fios.cpp b/src/fios.cpp
index 698a0b559..4586f86b3 100644
--- a/src/fios.cpp
+++ b/src/fios.cpp
@@ -219,7 +219,7 @@ static std::string FiosMakeFilename(const std::string *path, const char *name, c
const char *period = strrchr(name, '.');
if (period != nullptr && strcasecmp(period, ext) == 0) ext = "";
- return buf + name + ext;
+ return buf + PATHSEP + name + ext;
}
/**