diff --git a/src/fs_find_mount_point.cpp b/src/fs_find_mount_point.cpp index cd79bed8..dacd8447 100644 --- a/src/fs_find_mount_point.cpp +++ b/src/fs_find_mount_point.cpp @@ -5,7 +5,10 @@ int fs::find_mount_point(const ghc::filesystem::path &path_) { - + int rv; + struct stat initial_st; + + rv = fs::lstat(path_,&initial_st); return 0; }