diff options
author | Shauren <shauren.trinity@gmail.com> | 2020-08-04 15:42:08 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-26 14:20:13 +0100 |
commit | 58d199db480358aa88a427245f4f4716447fa3f3 (patch) | |
tree | 04523c18a458013ee79b2ee40320b130814b6db7 /src/server/worldserver/Main.cpp | |
parent | e2fb15fd225e772a43cac3e5df19fd94d3557997 (diff) |
Core/Misc: Fix compile errors found with msvc /permissive-
(cherry picked from commit b3db50a3b41b2db209327387f59afa1c40532773)
Diffstat (limited to 'src/server/worldserver/Main.cpp')
-rw-r--r-- | src/server/worldserver/Main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/worldserver/Main.cpp b/src/server/worldserver/Main.cpp index 01556d4ef4f..1705aae4f2a 100644 --- a/src/server/worldserver/Main.cpp +++ b/src/server/worldserver/Main.cpp @@ -425,7 +425,7 @@ void ShutdownCLIThread(std::thread* cliThread) // if CancelSynchronousIo fails with ERROR_NOT_FOUND then there was nothing to cancel, proceed with shutdown if (errorCode != ERROR_NOT_FOUND) { - LPSTR errorBuffer; + LPCSTR errorBuffer; DWORD numCharsWritten = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS, nullptr, errorCode, 0, (LPTSTR)&errorBuffer, 0, nullptr); if (!numCharsWritten) @@ -434,7 +434,7 @@ void ShutdownCLIThread(std::thread* cliThread) TC_LOG_DEBUG("server.worldserver", "Error cancelling I/O of CliThread, error code %u, detail: %s", uint32(errorCode), errorBuffer); if (numCharsWritten) - LocalFree(errorBuffer); + LocalFree((LPSTR)errorBuffer); // send keyboard input to safely unblock the CLI thread INPUT_RECORD b[4]; |