From 67c79da857671faa65e110f58667c2282403046c Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Thu, 15 Aug 2013 14:24:28 +0400 Subject: [PATCH] runtime: fix plan9 build R=golang-dev, r CC=golang-dev https://golang.org/cl/12986043 --- src/pkg/runtime/mem_plan9.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/runtime/mem_plan9.c b/src/pkg/runtime/mem_plan9.c index 3aa16eb3a6..f443b640e7 100644 --- a/src/pkg/runtime/mem_plan9.c +++ b/src/pkg/runtime/mem_plan9.c @@ -56,7 +56,7 @@ runtime·SysUnused(void *v, uintptr nbytes) } void -runtime·SysUsed(void *v, uintptr n) +runtime·SysUsed(void *v, uintptr nbytes) { USED(v, nbytes); } -- 2.48.1