From 0fafefcef27d486f57bf6913ecb77f7360c60a2b Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Fri, 2 Jan 2026 13:32:04 -0600 Subject: [PATCH] mergerfs_api.cpp --- src/mergerfs_api.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/mergerfs_api.cpp b/src/mergerfs_api.cpp index f6b041fa..4920714f 100644 --- a/src/mergerfs_api.cpp +++ b/src/mergerfs_api.cpp @@ -14,6 +14,13 @@ typedef std::array mfs_api_buf_t; +static +std::string +_mergerfs_config_file(const fs::path &mount_) +{ + return mount_ / ".mergerfs"; +} + static int _lgetxattr(const std::string &input_path_, @@ -28,12 +35,6 @@ _lgetxattr(const std::string &input_path_, return fs::xattr::get(input_path_,key,&val_); } -static -std::string -_mergerfs_config_file(const fs::path &mount_) -{ - return mount_ / ".mergerfs"; -} bool mergerfs::api::is_mergerfs(const fs::path &mountpoint_)