mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2025-01-03 05:38:54 +00:00
Fixed compiler warning
``` virtual_memory.c:210:14: warning: type defaults to 'int' in declaration of 'pageMinimum' [-Wimplicit-int] ```
This commit is contained in:
parent
09aa65c3c7
commit
00472c54ef
@ -206,8 +206,8 @@ void* allocLargePagesMemory(size_t bytes) {
|
|||||||
#if defined(_WIN32) || defined(__CYGWIN__)
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
||||||
if (setPrivilege("SeLockMemoryPrivilege", 1, &errfunc))
|
if (setPrivilege("SeLockMemoryPrivilege", 1, &errfunc))
|
||||||
return NULL;
|
return NULL;
|
||||||
auto pageMinimum = GetLargePageMinimum();
|
size_t pageMinimum = GetLargePageMinimum();
|
||||||
if (pageMinimum <= 0) {
|
if (!pageMinimum) {
|
||||||
errfunc = "No large pages";
|
errfunc = "No large pages";
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user