From 6cc8eb982f8f76b63003420d81959495a22628be Mon Sep 17 00:00:00 2001 From: panzone <150828896+panzone91@users.noreply.github.com> Date: Sun, 26 Jan 2025 18:42:12 +0100 Subject: [PATCH] linting --- src/core/file_sys/fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/file_sys/fs.cpp b/src/core/file_sys/fs.cpp index 1702ad802..b1a996f50 100644 --- a/src/core/file_sys/fs.cpp +++ b/src/core/file_sys/fs.cpp @@ -51,7 +51,7 @@ std::filesystem::path MntPoints::GetHostPath(std::string_view path, bool* is_rea } // Path is relative? - if(corrected_path.at(0) != '/') { + if (corrected_path.at(0) != '/') { corrected_path = "/app0/" + corrected_path; }