From 10ad8ceda41cd135db758335179ca20f9a378033 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 16 Apr 2025 00:19:05 -0500 Subject: [PATCH] fs_find_mount_point.cpp --- src/fs_find_mount_point.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs_find_mount_point.cpp b/src/fs_find_mount_point.cpp index f9286da4..327e7e1b 100644 --- a/src/fs_find_mount_point.cpp +++ b/src/fs_find_mount_point.cpp @@ -19,7 +19,7 @@ fs::find_mount_point(const ghc::filesystem::path &path_) { rv = fs::lstat(tmp_path,&tmp_st); if(rv == -1) - return -1; + return {}; }