From 500fb8dffa8a1f373888faf7787b142ba6bf43b9 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 31 May 2026 19:02:27 -0500 Subject: [PATCH] [ox/fs] Cleanup --- deps/oxlib/src/fs/src/filesystem/passthroughfs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/oxlib/src/fs/src/filesystem/passthroughfs.cpp b/deps/oxlib/src/fs/src/filesystem/passthroughfs.cpp index 63068a7c..4b86c4d7 100644 --- a/deps/oxlib/src/fs/src/filesystem/passthroughfs.cpp +++ b/deps/oxlib/src/fs/src/filesystem/passthroughfs.cpp @@ -31,8 +31,8 @@ Error PassThroughFS::mkdir(StringViewCR path, bool recursive) noexcept { auto const cleanPath = endsWith(path, '/') ? substr(path, 0, path.size() - 1) : path; bool success = false; - auto p = cleanPath.size() ? m_path / stripSlash(cleanPath) : m_path; - const auto u8p = p.u8string(); + auto const p = cleanPath.size() ? m_path / stripSlash(cleanPath) : m_path; + auto const u8p = p.u8string(); oxTrace("ox.fs.PassThroughFS.mkdir", std::bit_cast(u8p.c_str())); if (recursive) { std::error_code ec;