From a4bc1e80d718d9267818e8b394e69912341c72f7 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 16 Apr 2025 08:20:29 -0500 Subject: [PATCH] fs_find_mount_point.cpp --- src/fs_find_mount_point.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/fs_find_mount_point.cpp b/src/fs_find_mount_point.cpp index aea8f1e5..76794667 100644 --- a/src/fs_find_mount_point.cpp +++ b/src/fs_find_mount_point.cpp @@ -19,6 +19,9 @@ fs::find_mount_point(const ghc::filesystem::path &path_) rv = fs::lstat(tmp_path.parent_path(),&tmp_st); if(rv == -1) return {}; + printf("%d %d\n", + tmp_st.st_dev, + initial_st.st_dev); if(tmp_st.st_dev != initial_st.st_dev) return tmp_path;