diff options
-rw-r--r-- | Objects/mimalloc/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/mimalloc/alloc.c b/Objects/mimalloc/alloc.c index b369a5e..e6286b5 100644 --- a/Objects/mimalloc/alloc.c +++ b/Objects/mimalloc/alloc.c @@ -27,7 +27,7 @@ terms of the MIT license. A copy of the license can be found in the file // ------------------------------------------------------ #if (MI_DEBUG>0) -static void mi_debug_fill(mi_page_t* page, mi_block_t* block, int c, size_t size) { +static inline void mi_debug_fill(mi_page_t* page, mi_block_t* block, int c, size_t size) { size_t offset = (size_t)page->debug_offset; if (offset < size) { memset((char*)block + offset, c, size - offset); |