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 {}; }