vm: fix compilation on Windows

db4
U-SLAVA-DFB8FF805\Slava 2009-09-26 02:56:55 -05:00
parent 6578bd0533
commit 57b98e2c55
1 changed files with 1 additions and 1 deletions

2
vm/os-windows.cpp Normal file → Executable file
View File

@ -126,7 +126,7 @@ segment::~segment()
SYSTEM_INFO si;
GetSystemInfo(&si);
if(!VirtualFree((void*)(start - si.dwPageSize), 0, MEM_RELEASE))
myvm->fatal_error("Segment deallocation failed",0);
fatal_error("Segment deallocation failed",0);
}
void factor_vm::sleep_micros(u64 usec)