From: Kirill Frolov Date: Tue, 24 Nov 2020 15:16:54 +0000 (+0300) Subject: Revert "Fixed build for Windows." X-Git-Tag: submit/tizen/20210120.035625~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6656783c41dc05c7f214d79c672e09aaf8e7f454;p=sdk%2Ftools%2Fnetcoredbg.git Revert "Fixed build for Windows." This reverts commit 49a0048ebd9fd8758555652f996e8b56a6e7e9fc. --- diff --git a/src/debug/netcoredbg/vscodeprotocol.cpp b/src/debug/netcoredbg/vscodeprotocol.cpp index 700540e..62c801d 100644 --- a/src/debug/netcoredbg/vscodeprotocol.cpp +++ b/src/debug/netcoredbg/vscodeprotocol.cpp @@ -307,7 +307,7 @@ void VSCodeProtocol::EmitExecEvent(PID pid, const std::string& argv0) json body; body["name"] = argv0; - body["systemProcessId"] = DWORD(pid); + body["systemProcessId"] = unsigned(pid); body["isLocalProcess"] = true; body["startMethod"] = "launch";