Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix 65f65ad: Missing path separator that fell over a cliff.
  • Loading branch information
michicc committed Dec 27, 2020
1 parent dc5b802 commit 4f8e7b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fios.cpp
Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit 4f8e7b2

Please sign in to comment.