Browse Source

fs_find_mount_point.cpp

inodecalc
Antonio SJ Musumeci 3 weeks ago
parent
commit
c28e5ab2bb
  1. 2
      src/fs_find_mount_point.cpp

2
src/fs_find_mount_point.cpp

@ -9,6 +9,8 @@ fs::find_mount_point(const ghc::filesystem::path &path_)
struct stat initial_st;
rv = fs::lstat(path_,&initial_st);
if(rv == -1)
return -1;
return 0;
}
Loading…
Cancel
Save