replace unknown type to fix windows build

This commit is contained in:
walker0643
2018-01-28 16:19:27 -05:00
parent 0929086428
commit 0bb94da72d

View File

@@ -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);