diff options
Diffstat (limited to 'src/runtime/malloc.c')
| -rw-r--r-- | src/runtime/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/malloc.c b/src/runtime/malloc.c index e518b5667a..74354357c5 100644 --- a/src/runtime/malloc.c +++ b/src/runtime/malloc.c @@ -272,7 +272,7 @@ stackalloc(uint32 n) if(m->mallocing) { lock(&stacks); if(stacks.size == 0) - FixAlloc_Init(&stacks, n, SysAlloc); + FixAlloc_Init(&stacks, n, SysAlloc, nil, nil); if(stacks.size != n) { printf("stackalloc: in malloc, size=%D want %d", stacks.size, n); throw("stackalloc"); |
