Revert "Fixed build for Windows."
authorKirill Frolov <k.frolov@samsung.com>
Tue, 24 Nov 2020 15:16:54 +0000 (18:16 +0300)
committerAlexander Soldatov/Platform Lab /SRR/Staff Engineer/Samsung Electronics <soldatov.a@samsung.com>
Tue, 24 Nov 2020 16:03:13 +0000 (19:03 +0300)
This reverts commit 49a0048ebd9fd8758555652f996e8b56a6e7e9fc.

src/debug/netcoredbg/vscodeprotocol.cpp

index 700540ee3e514d34da76436a0ae0d2553937abc5..62c801d4101773fcdf883e985288fd17a6b29685 100644 (file)
@@ -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";