From: Sam Gross Date: Fri, 1 Mar 2024 00:02:44 +0000 (-0500) Subject: gh-115491: Fix Clang compiler warning (#116153) X-Git-Tag: v3.13.0a5~166 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d7ddd90308324340855ddb9cc8dda2c1ee3a5944;p=thirdparty%2FPython%2Fcpython.git gh-115491: Fix Clang compiler warning (#116153) gh-115491: Fix compiler warning on macOS --- diff --git a/Objects/mimalloc/alloc.c b/Objects/mimalloc/alloc.c index b369a5ebcb23..e6286b54bedc 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);