From 6b463adbb9b94197ae5c56d9adcc41d77f9269fb Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 2 Aug 2024 12:53:12 -0500 Subject: [PATCH] updated build system --- .../src/drives/winfsp/remotewinfsp/remote_client.cpp | 3 ++- .../src/drives/winfsp/remotewinfsp/remote_server.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_client.cpp b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_client.cpp index c127a93a..a70761ec 100644 --- a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_client.cpp +++ b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_client.cpp @@ -35,7 +35,8 @@ namespace repertory::remote_winfsp { (((config_.get_event_level() >= remote_winfsp_client_event::level) && \ (ret != STATUS_SUCCESS)) || \ (config_.get_event_level() >= event_level::trace))) \ - event_system::instance().raise(func, file, ret) + event_system::instance().raise( \ + std::string{func}, file, ret) // clang-format off E_SIMPLE3(remote_winfsp_client_event, debug, true, diff --git a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_server.cpp b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_server.cpp index bfe39eda..24cb1573 100644 --- a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_server.cpp +++ b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_server.cpp @@ -53,7 +53,8 @@ namespace repertory::remote_winfsp { (((config_.get_event_level() >= remote_winfsp_server_event::level) && \ (ret != STATUS_SUCCESS)) || \ (config_.get_event_level() >= event_level::trace))) \ - event_system::instance().raise(func, file, ret) + event_system::instance().raise( \ + std::string{func}, file, ret) // clang-format off E_SIMPLE3(remote_winfsp_server_event, debug, true,