aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2013-10-17 11:57:00 -0700
committerIan Lance Taylor <iant@golang.org>2013-10-17 11:57:00 -0700
commit667303f158a80eb1297bad90cc65576e83260305 (patch)
tree6cfb50692d5a24f2f764c03157cf765bd659eb02
parent4dce7f85751e42fd1149fa46938edb8a046d4c3a (diff)
downloadgo-667303f158a80eb1297bad90cc65576e83260305.tar.gz
go-667303f158a80eb1297bad90cc65576e83260305.zip
runtime: correct parameter name in MCentral_AllocList comment
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/14792043
-rw-r--r--src/pkg/runtime/mcentral.c2
1 files changed, 1 insertions, 1 deletions
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)
{