From 3e8284b85192e007a9ca94991f92893a8b02de38 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 23 Apr 2025 16:56:27 -0500 Subject: [PATCH] refactor --- .../include/drives/fuse/remotefuse/remote_client.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repertory/librepertory/include/drives/fuse/remotefuse/remote_client.hpp b/repertory/librepertory/include/drives/fuse/remotefuse/remote_client.hpp index cdafd69c..63495069 100644 --- a/repertory/librepertory/include/drives/fuse/remotefuse/remote_client.hpp +++ b/repertory/librepertory/include/drives/fuse/remotefuse/remote_client.hpp @@ -38,8 +38,8 @@ public: private: const app_config &config_; packet_client packet_client_; - remote::user_id uid_ = 0; - remote::group_id gid_ = 0; + remote::user_id uid_{0}; + remote::group_id gid_{0}; public: [[nodiscard]] auto check() -> packet::error_type;