From bf4738df5cad0eaa61f4e24b8db7611e378f9f80 Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Fri, 11 Aug 2023 16:39:45 +0200 Subject: update vcpkg dependencies (#356) * bump vcpkg version * fmt lib 10 fixes * xmake dependencies (with linux workarounds) * changelog --- src/zenserver/zenserver.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/zenserver/zenserver.cpp') diff --git a/src/zenserver/zenserver.cpp b/src/zenserver/zenserver.cpp index 6e636611d..d4a82231d 100644 --- a/src/zenserver/zenserver.cpp +++ b/src/zenserver/zenserver.cpp @@ -1173,7 +1173,7 @@ ZenEntryPoint::Run() ZEN_INFO( "Looks like there is already a process listening to this port {} (pid: {}), attaching owner pid {} to running instance", ServerOptions.BasePort, - Entry->Pid, + Entry->Pid.load(), ServerOptions.OwnerPid); Entry->AddSponsorProcess(ServerOptions.OwnerPid); @@ -1182,7 +1182,9 @@ ZenEntryPoint::Run() } else { - ZEN_WARN("Exiting since there is already a process listening to port {} (pid: {})", ServerOptions.BasePort, Entry->Pid); + ZEN_WARN("Exiting since there is already a process listening to port {} (pid: {})", + ServerOptions.BasePort, + Entry->Pid.load()); std::exit(1); } } -- cgit v1.2.3