]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: correct parameter name in MCentral_AllocList comment
authorIan Lance Taylor <iant@golang.org>
Thu, 17 Oct 2013 18:57:00 +0000 (11:57 -0700)
committerIan Lance Taylor <iant@golang.org>
Thu, 17 Oct 2013 18:57:00 +0000 (11:57 -0700)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/14792043

src/pkg/runtime/mcentral.c

index cfff24a6da6e066fab4664329f5bf14c3f77222f..735a7e6a9a38c38c3c5a872ff5b3be96153fabac 100644 (file)
@@ -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)
 {