vm: fix compile error on non-Mac OS X platforms
parent
793d0606f6
commit
d33d7728a0
|
@ -18,7 +18,7 @@ inline static void memset_cell(void *dst, cell pattern, size_t size)
|
|||
cell *end = (cell *)((cell)dst + size);
|
||||
while(start < end)
|
||||
{
|
||||
*start = fill;
|
||||
*start = pattern;
|
||||
start++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue