Browse Source

mergerfs.cpp

inodecalc
Antonio SJ Musumeci 3 weeks ago
parent
commit
975b9f0342
  1. 11
      src/mergerfs.cpp

11
src/mergerfs.cpp

@ -304,10 +304,13 @@ main(int argc_,
char **argv_)
{
ghc::filesystem::path path{argv_[1]};
fmt::print("{} : {}\n",
path.string(),
fs::find_mount_point(path)->string());
fs::ecpath ecpath;
ecpath = fs::find_mount_point(path);
if(ecpath)
fmt::print("{} : {}\n",
path.string(),
ec->string());
return 0;

Loading…
Cancel
Save