From fdec5f7b6e4a022e9ec1baefd8f2b1eac83e8ad0 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 2 Aug 2025 10:24:22 -0500 Subject: [PATCH] fix --- support/src/utils/file.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/src/utils/file.cpp b/support/src/utils/file.cpp index bfed2c5d..4a383d9b 100644 --- a/support/src/utils/file.cpp +++ b/support/src/utils/file.cpp @@ -58,7 +58,7 @@ auto change_to_process_directory() -> bool { auto res = proc_pidpath(getpid(), reinterpret_cast(path.data()), static_cast(path.size())); if (res == 0) { - path = utils::path::get_parent_path(path) : + path = utils::path::get_parent_path(path); } #else // !defined(__APPLE__) auto res = readlink("/proc/self/exe", path.data(), path.size());