From bee3848f4e252578c7439890a92e534b39c1e690 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 25 Mar 2014 14:17:00 -0700 Subject: [PATCH] runtime: fix windows build (buggy commit in 19543:d68b79ccbfed) TBR=rsc CC=golang-codereviews https://golang.org/cl/80090043 --- src/pkg/runtime/mem_windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/runtime/mem_windows.c b/src/pkg/runtime/mem_windows.c index 551c96ce99..7f55677c29 100644 --- a/src/pkg/runtime/mem_windows.c +++ b/src/pkg/runtime/mem_windows.c @@ -71,7 +71,7 @@ runtime·SysFault(void *v, uintptr n) } void* -runtime·SysReserve(void *v, uintptr n) +runtime·SysReserve(void *v, uintptr n, bool *reserved) { *reserved = true; // v is just a hint. -- 2.50.0