fs_find_mount_point.cpp

This commit is contained in:
Antonio SJ Musumeci 2025-04-16 00:12:36 -05:00
parent 1d27933a21
commit 1a4845e2ae

View File

@ -7,6 +7,7 @@ fs::find_mount_point(const ghc::filesystem::path &path_)
{
int rv;
struct stat initial_st;
struct stat lower_st;
rv = fs::lstat(path_,&initial_st);
if(rv == -1)