diff options
Diffstat (limited to 'src/zenserver/zenserver.cpp')
| -rw-r--r-- | src/zenserver/zenserver.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
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); } } |