diff options
Diffstat (limited to 'tinyalloc.c')
| -rw-r--r-- | tinyalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyalloc.c b/tinyalloc.c index b95f9f8..36e9093 100644 --- a/tinyalloc.c +++ b/tinyalloc.c @@ -111,7 +111,7 @@ static void compact() { } #endif -bool ta_init(const void *base, const void *limit, const size_t heap_blocks, const size_t split_thresh, const size_t alignment) { +bool ta_init(void *base, const void *limit, const size_t heap_blocks, const size_t split_thresh, const size_t alignment) { heap = (Heap *)base; heap_limit = limit; heap_split_thresh = split_thresh; |
