From e869c0ad032cf57e9ea1bf6ce3bfc28bce861132 Mon Sep 17 00:00:00 2001 From: David Markowitz Date: Tue, 24 Dec 2024 12:39:18 -0800 Subject: [PATCH] Add parenthesis around path --- dMasterServer/MasterServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dMasterServer/MasterServer.cpp b/dMasterServer/MasterServer.cpp index 3895473b..2c706400 100644 --- a/dMasterServer/MasterServer.cpp +++ b/dMasterServer/MasterServer.cpp @@ -88,7 +88,7 @@ int main(int argc, char** argv) { for (const auto folder : folders) { if (!std::filesystem::exists(BinaryPathFinder::GetBinaryDir() / folder)) { - LOG("The %s folder was not copied to the binary directory. Please copy the %s folder from your download to the binary directory or re-run cmake.", folder, folder); + LOG("The (%s) folder was not copied to the binary directory. Please copy the (%s) folder from your download to the binary directory or re-run cmake.", folder, folder); return EXIT_FAILURE; } }