runtime: fix build on Plan 9

warning: src/pkg/runtime/mem_plan9.c:72 param declared and not used: n
src/pkg/runtime/mem_plan9.c:73 name not declared: nbytes
src/pkg/runtime/mem_plan9.c:73 bad in naddr: NAME nbytes<>+0(SB)

LGTM=minux.ma, bradfitz
R=khr, minux.ma, bradfitz
CC=golang-codereviews
https://golang.org/cl/69360043
This commit is contained in:
David du Colombier 2014-02-27 09:22:02 +01:00
parent 1665b006a5
commit 092dd4bed2
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ runtime·SysMap(void *v, uintptr nbytes, uint64 *stat)
}
void
runtime·SysFault(void *v, uintptr n)
runtime·SysFault(void *v, uintptr nbytes)
{
USED(v, nbytes);
}