fix prototype

This commit is contained in:
Daan Leijen 2021-12-11 17:10:00 -08:00
parent 7a7a774257
commit 9b8bb5b6d6

View file

@ -209,8 +209,8 @@ static void _mi_show_block_trace(const mi_page_t* page, const mi_block_t* block,
}
}
#else
static void _mi_show_block_trace(const mi_page_t* page, const mi_block_t* block) {
MI_UNUSED(page); MI_UNUSED(block);
static void _mi_show_block_trace(const mi_page_t* page, const mi_block_t* block, const char* msg) {
MI_UNUSED(page); MI_UNUSED(block); MI_UNUSED(msg);
}
#endif