diff options
Diffstat (limited to 'menu/heap.c')
-rw-r--r-- | menu/heap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menu/heap.c b/menu/heap.c index 2c90a459..aa95454e 100644 --- a/menu/heap.c +++ b/menu/heap.c @@ -31,7 +31,7 @@ static inline void _checkheap(void) { if (currsp() < heap_curr) // Heap corrupted { - csprint("\r\nHeap overflow, aborting!\r\n"); + csprint("\r\nHeap overflow, aborting!\r\n",0x07); asm volatile("int $0x21" : : "a" (0x4C7f)); /* Exit with error */ return; } |