replace unknown type to fix windows build
This commit is contained in:
parent
0929086428
commit
0bb94da72d
|
@ -141,7 +141,7 @@ ArchSystemWindows::getLibsUsed(void) const
|
|||
|
||||
DWORD pid = GetCurrentProcessId();
|
||||
|
||||
std::string msg = "pid:" + std::to_string((_ULonglong)pid) + "\n";
|
||||
std::string msg = "pid:" + std::to_string((unsigned long long)pid) + "\n";
|
||||
|
||||
hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid);
|
||||
|
||||
|
|
Loading…
Reference in New Issue