aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/mcentral.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/mcentral.c')
-rw-r--r--src/runtime/mcentral.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/mcentral.c b/src/runtime/mcentral.c
index badf68eae2..5b07faf11a 100644
--- a/src/runtime/mcentral.c
+++ b/src/runtime/mcentral.c
@@ -92,7 +92,7 @@ MCentral_Alloc(MCentral *c)
// The objects are linked together by their first words.
// On return, *pstart points at the first object and *pend at the last.
void
-MCentral_FreeList(MCentral *c, int32 n, void *start)
+MCentral_FreeList(MCentral *c, int32 n, MLink *start)
{
MLink *v, *next;
@@ -190,4 +190,3 @@ MCentral_Grow(MCentral *c)
MSpanList_Insert(&c->nonempty, s);
return true;
}
-