1
0
mirror of https://github.com/golang/go synced 2024-11-12 00:20:22 -07:00

runtime: fix windows build (buggy commit in 19543:d68b79ccbfed)

TBR=rsc
CC=golang-codereviews
https://golang.org/cl/80090043
This commit is contained in:
Ian Lance Taylor 2014-03-25 14:17:00 -07:00
parent 1b45cc45e3
commit bee3848f4e

View File

@ -71,7 +71,7 @@ runtime·SysFault(void *v, uintptr n)
} }
void* void*
runtime·SysReserve(void *v, uintptr n) runtime·SysReserve(void *v, uintptr n, bool *reserved)
{ {
*reserved = true; *reserved = true;
// v is just a hint. // v is just a hint.