diff options
Diffstat (limited to 'src/pkg/runtime/mheapmap32.c')
| -rw-r--r-- | src/pkg/runtime/mheapmap32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/mheapmap32.c b/src/pkg/runtime/mheapmap32.c index 420ca2d83..8cea825c3 100644 --- a/src/pkg/runtime/mheapmap32.c +++ b/src/pkg/runtime/mheapmap32.c @@ -84,7 +84,7 @@ MHeapMap_Preallocate(MHeapMap *m, PageID k, uintptr len) p2 = m->allocator(sizeof *p2); if(p2 == nil) return false; - sys_memclr((byte*)p2, sizeof *p2); + runtime_memclr((byte*)p2, sizeof *p2); m->p[i1] = p2; } |
