misc: Fix malloc heap memory typo.

This commit is contained in:
iabdalkader 2024-07-10 00:19:29 +03:00
parent 674cb76499
commit 2a3be63d41

View File

@ -82,7 +82,7 @@ OMV_GC_BLOCK_NEW(4)
. = . + OMV_HEAP_SIZE; . = . + OMV_HEAP_SIZE;
. = ALIGN(4); . = ALIGN(4);
_heap_limit = .; _heap_limit = .;
} > OMV_MAIN_MEMORY } > OMV_HEAP_MEMORY
#endif #endif
/* Stack memory */ /* Stack memory */