1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-25 05:40:39 -05:00

Fixed Linux build.

This commit is contained in:
XMRig
2019-06-02 19:58:16 +07:00
parent fc655d1b8d
commit 8dc586283f
2 changed files with 2 additions and 1 deletions

View File

@@ -74,7 +74,7 @@ void xmrig::VirtualMemory::flushInstructionCache(void *p, size_t size)
void xmrig::VirtualMemory::freeLargePagesMemory(void *p, size_t size)
{
munmap(memory, size);
munmap(p, size);
}