From 667303f158a80eb1297bad90cc65576e83260305 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 17 Oct 2013 11:57:00 -0700 Subject: [PATCH] runtime: correct parameter name in MCentral_AllocList comment R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/14792043 --- src/pkg/runtime/mcentral.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/runtime/mcentral.c b/src/pkg/runtime/mcentral.c index cfff24a6da..735a7e6a9a 100644 --- a/src/pkg/runtime/mcentral.c +++ b/src/pkg/runtime/mcentral.c @@ -33,7 +33,7 @@ runtime·MCentral_Init(MCentral *c, int32 sizeclass) // Allocate a list of objects from the central free list. // Return the number of objects allocated. // The objects are linked together by their first words. -// On return, *pstart points at the first object. +// On return, *pfirst points at the first object. int32 runtime·MCentral_AllocList(MCentral *c, MLink **pfirst) { -- 2.50.0