diff options
| author | Stefan Boberg <[email protected]> | 2026-02-20 09:07:00 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-02-20 09:07:00 +0100 |
| commit | 5789739f042791d38f0d7f4219e5b0b823d8b3d6 (patch) | |
| tree | fad9a5a806e4167e25f2049e2bd19ed1129213bd /src/zencore/filesystem.cpp | |
| parent | GC - fix handling of attachment ranges, http access token expiration, lock fi... (diff) | |
| download | zen-5789739f042791d38f0d7f4219e5b0b823d8b3d6.tar.xz zen-5789739f042791d38f0d7f4219e5b0b823d8b3d6.zip | |
fix MakeSafeAbsolutePathInPlace mis-spelling (#765)
(was MakeSafeAbsolutePathÍnPlace - note accent)
Also fixed misleading comments on multiple functions in filesystem.h
Diffstat (limited to 'src/zencore/filesystem.cpp')
| -rw-r--r-- | src/zencore/filesystem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zencore/filesystem.cpp b/src/zencore/filesystem.cpp index 92a065707..1a4ee4b9b 100644 --- a/src/zencore/filesystem.cpp +++ b/src/zencore/filesystem.cpp @@ -3069,7 +3069,7 @@ SetFileReadOnly(const std::filesystem::path& Filename, bool ReadOnly) } void -MakeSafeAbsolutePathÍnPlace(std::filesystem::path& Path) +MakeSafeAbsolutePathInPlace(std::filesystem::path& Path) { if (!Path.empty()) { @@ -3091,7 +3091,7 @@ std::filesystem::path MakeSafeAbsolutePath(const std::filesystem::path& Path) { std::filesystem::path Tmp(Path); - MakeSafeAbsolutePathÍnPlace(Tmp); + MakeSafeAbsolutePathInPlace(Tmp); return Tmp; } |