From: Ian Lance Taylor Date: Thu, 17 Oct 2013 18:57:00 +0000 (-0700) Subject: runtime: correct parameter name in MCentral_AllocList comment X-Git-Tag: go1.2rc2~5 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=667303f158a80eb1297bad90cc65576e83260305;p=gostls13.git runtime: correct parameter name in MCentral_AllocList comment R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/14792043 --- 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) {