From 7a4fe25620a79b18ef1ef5ffa7441586e3ea60d8 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 16 Apr 2025 09:19:30 -0500 Subject: [PATCH] fs_find_mount_point.cpp --- src/fs_find_mount_point.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/fs_find_mount_point.cpp b/src/fs_find_mount_point.cpp index a2ff8187..100cf413 100644 --- a/src/fs_find_mount_point.cpp +++ b/src/fs_find_mount_point.cpp @@ -24,11 +24,6 @@ fs::find_mount_point(const ghc::filesystem::path &path_) rv = fs::lstat(tmp_path.parent_path(),&tmp_st); if(rv == -1) return {}; - printf("%d:%s %d:%s\n", - tmp_st.st_dev, - tmp_path.parent_path().string().c_str(), - initial_st.st_dev, - can_path.string().c_str()); if(tmp_st.st_dev != initial_st.st_dev) return tmp_path;