ARM build fix

Former-commit-id: 5832c25ad1ae3fbe12ee245a96799b4b1a75e4b1
This commit is contained in:
John Sully 2021-01-31 21:22:23 +00:00
parent 79ad42a836
commit 8da77700dd

View File

@ -5180,7 +5180,7 @@ int linuxMadvFreeForkBugCheck(void) {
const long map_size = 3 * 4096;
/* Create a memory map that's in our full control (not one used by the allocator). */
p = mmap(NULL, map_size, PROT_READ, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
p = (char*)mmap(NULL, map_size, PROT_READ, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
serverAssert(p != MAP_FAILED);
q = p + 4096;