diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 1e28f7cbb..d8163a4a8 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -838,8 +838,7 @@ std::string GetPathWithoutTop(std::string path) { } const auto name_bck_index = path.find_first_of('\\'); const auto name_fwd_index = path.find_first_of('/'); - return path.substr(std::min(name_bck_index, name_fwd_index) + 1); - return path.substr(std::min(name_bck_index, name_fwd_index) + 1); + return path.substr(std::min(name_bck_index, name_fwd_index) + 1); } std::string GetFilename(std::string path) {