Correct the use of MI_DEBUG by conditional build
MI_DEBUG is a macro rather than a variable.
This commit is contained in:
parent
c6c1d5fffd
commit
47e822c70f
@ -234,10 +234,12 @@ static bool _mi_heap_done() {
|
||||
}
|
||||
_mi_os_free(heap, sizeof(mi_thread_data_t), &_mi_stats_main);
|
||||
}
|
||||
else if (MI_DEBUG > 0) {
|
||||
#if (MI_DEBUG > 0)
|
||||
else {
|
||||
_mi_heap_destroy_pages(heap);
|
||||
mi_assert_internal(heap->tld->heap_backing == &_mi_heap_main);
|
||||
}
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user