fix build warning on alpine 32-bit

This commit is contained in:
Daan 2024-05-16 18:53:50 -07:00
parent 5eb29e971b
commit e7f2ffe26c

View File

@ -33,6 +33,9 @@ const mi_page_t _mi_page_empty = {
MI_ATOMIC_VAR_INIT(0), // xthread_free
MI_ATOMIC_VAR_INIT(0), // xheap
NULL, NULL
#if MI_INTPTR_SIZE==4
, { NULL }
#endif
};
#define MI_PAGE_EMPTY() ((mi_page_t*)&_mi_page_empty)