From 2a40d8207ef4418f8de40729a9ad24f39545a3e2 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 6 Aug 2025 07:22:09 -0500 Subject: [PATCH] fix --- repertory/librepertory/src/drives/fuse/fuse_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repertory/librepertory/src/drives/fuse/fuse_base.cpp b/repertory/librepertory/src/drives/fuse/fuse_base.cpp index 71f72e61..ad14dc46 100644 --- a/repertory/librepertory/src/drives/fuse/fuse_base.cpp +++ b/repertory/librepertory/src/drives/fuse/fuse_base.cpp @@ -922,7 +922,7 @@ auto fuse_base::unmount(const std::string &mount_location) -> int { if (utils::file::file{ utils::path::combine("~", {"/Library/LaunchAgents", label_})} .exists()) { - return utils::launchctl_command(launchctl::bootout, label_); + return utils::launchctl_command(launchctl_type::bootout, label_); } auto cmd = "umount \"" + mount_location + "\" >/dev/null 2>&1";