runtime: remove unused variable

Left over from cl/119490044.

LGTM=bradfitz
R=rsc, bradfitz
CC=golang-codereviews
https://golang.org/cl/125730043
This commit is contained in:
Dmitriy Vyukov 2014-08-06 19:33:15 +04:00
parent f3dd6df6b1
commit 7dfcebbd2d

View file

@ -169,7 +169,7 @@ runtime·MCentral_FreeSpan(MCentral *c, MSpan *s, int32 n, MLink *start, MLink *
static bool
MCentral_Grow(MCentral *c)
{
uintptr size, npages, cap, i, n;
uintptr size, npages, i, n;
MLink **tailp, *v;
byte *p;
MSpan *s;