From fde3fc6a2d2e3dbc381522fd59c2cee9a40169ba Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 16 Apr 2025 00:14:33 -0500 Subject: [PATCH] fs_find_mount_point.cpp --- src/fs_find_mount_point.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fs_find_mount_point.cpp b/src/fs_find_mount_point.cpp index f088db62..a1282610 100644 --- a/src/fs_find_mount_point.cpp +++ b/src/fs_find_mount_point.cpp @@ -7,13 +7,13 @@ fs::find_mount_point(const ghc::filesystem::path &path_) { int rv; struct stat initial_st; - struct stat lower_st; + struct stat tmp_st; rv = fs::lstat(path_,&initial_st); if(rv == -1) return -1; - + while(path return 0; }