From 12f34b3fbdd9de37ae921b4b2c99a758d2b71da5 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 16 Apr 2025 00:09:24 -0500 Subject: [PATCH] fs_find_mount_point.cpp --- src/fs_find_mount_point.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; }