summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/mheapmap32.c
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2010-02-25 10:13:09 -0800
committerIan Lance Taylor <iant@golang.org>2010-02-25 10:13:09 -0800
commitd032323521288e61df0ed05c2ac8380d6da58e1c (patch)
treecbcbef813117c8db183ed16bea25ef4b1b0e9fec /src/pkg/runtime/mheapmap32.c
parentf2b0684d505aaa532ca49ff417e3b2b15e1c4539 (diff)
downloadgolang-d032323521288e61df0ed05c2ac8380d6da58e1c.tar.gz
Use consistent types in .h file and .c file.
R=rsc CC=golang-dev http://codereview.appspot.com/224053
Diffstat (limited to 'src/pkg/runtime/mheapmap32.c')
-rw-r--r--src/pkg/runtime/mheapmap32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/mheapmap32.c b/src/pkg/runtime/mheapmap32.c
index 13491595d..1e3598cbe 100644
--- a/src/pkg/runtime/mheapmap32.c
+++ b/src/pkg/runtime/mheapmap32.c
@@ -10,7 +10,7 @@
// 3-level radix tree mapping page ids to Span*.
void
-MHeapMap_Init(MHeapMap *m, void *(*allocator)(size_t))
+MHeapMap_Init(MHeapMap *m, void *(*allocator)(uintptr))
{
m->allocator = allocator;
}