diff --git a/bootloader/main.c b/bootloader/main.c index faccfc8..19a3553 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -1475,7 +1475,7 @@ void ipl_main() pivot_stack(IPL_STACK_TOP); // Tegra/Horizon configuration goes to 0x80000000+, package2 goes to 0xA9800000, we place our heap in between. - heap_init(IPL_HEAP_START); + heap_init((void *)IPL_HEAP_START); #ifdef DEBUG_UART_PORT uart_send(DEBUG_UART_PORT, (u8 *)"hekate: Hello!\r\n", 16); diff --git a/nyx/nyx_gui/nyx.c b/nyx/nyx_gui/nyx.c index edf1c32..361af2c 100644 --- a/nyx/nyx_gui/nyx.c +++ b/nyx/nyx_gui/nyx.c @@ -416,7 +416,7 @@ void nyx_init_load_res() void ipl_main() { //Tegra/Horizon configuration goes to 0x80000000+, package2 goes to 0xA9800000, we place our heap in between. - heap_init(IPL_HEAP_START); + heap_init((void *)IPL_HEAP_START); b_cfg = (boot_cfg_t *)(nyx_str->hekate + 0x94);