diff options
| author | Jason Evans <je@fb.com> | 2011-11-06 04:06:55 (GMT) |
|---|---|---|
| committer | Jason Evans <je@fb.com> | 2011-11-06 04:06:55 (GMT) |
| commit | 30fbef8aeaf65fcd6b265fb9f551e7c2ec8cb22f (patch) | |
| tree | 7cb046c1e7ab09cba4c733c29c78c536c15e531d /src | |
| parent | 8e6f8b490dbd4b9ae715267fd401f09a056f92c4 (diff) | |
| download | jemalloc-30fbef8aeaf65fcd6b265fb9f551e7c2ec8cb22f.zip jemalloc-30fbef8aeaf65fcd6b265fb9f551e7c2ec8cb22f.tar.gz jemalloc-30fbef8aeaf65fcd6b265fb9f551e7c2ec8cb22f.tar.bz2 | |
Fix rallocm() test to support >4KiB pages.
Diffstat (limited to 'src')
| -rw-r--r-- | src/jemalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jemalloc.c b/src/jemalloc.c index fd6b890..a161c2e 100644 --- a/src/jemalloc.c +++ b/src/jemalloc.c @@ -689,7 +689,7 @@ malloc_init_hard(void) result = sysconf(_SC_PAGESIZE); assert(result != -1); - pagesize = (unsigned)result; + pagesize = (size_t)result; /* * We assume that pagesize is a power of 2 when calculating |
