Index: branches/xZenu/src/arch/i386/boot2/boot.c =================================================================== --- branches/xZenu/src/arch/i386/boot2/boot.c (revision 1311) +++ branches/xZenu/src/arch/i386/boot2/boot.c (revision 1312) @@ -53,6 +53,7 @@ #include #include "boot.h" +#include "memory.h" extern void init_module_system(); extern int execute_hook(const char* name, void*, void*, void*, void*); @@ -89,7 +90,7 @@ void initialize_runtime(void) { zeroBSS(); - malloc_init(ZALLOC_ADDR, ZALLOC_LEN, 16384, malloc_error); + malloc_init((void*)ZALLOC_ADDR, ZALLOC_LEN, 16384, malloc_error); } //==========================================================================