From: Dmitriy Vyukov Date: Wed, 6 Aug 2014 15:33:15 +0000 (+0400) Subject: runtime: remove unused variable X-Git-Tag: go1.4beta1~924 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7dfcebbd2dcdd99a43b66f50f8cc631cf1d9c082;p=gostls13.git runtime: remove unused variable Left over from cl/119490044. LGTM=bradfitz R=rsc, bradfitz CC=golang-codereviews https://golang.org/cl/125730043 --- diff --git a/src/pkg/runtime/mcentral.c b/src/pkg/runtime/mcentral.c index 5699d11ee6..3f64b5ed23 100644 --- a/src/pkg/runtime/mcentral.c +++ b/src/pkg/runtime/mcentral.c @@ -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;