From d1f6661eafe2d33fac5015ddd5a2849669cd563c Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Thu, 5 Nov 2015 21:27:44 +0100 Subject: [PATCH] Cosmetic fix --- u-boot/lib_mips/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/u-boot/lib_mips/board.c b/u-boot/lib_mips/board.c index c340b0a..5577459 100644 --- a/u-boot/lib_mips/board.c +++ b/u-boot/lib_mips/board.c @@ -84,7 +84,7 @@ void *sbrk(ptrdiff_t increment){ ulong new = old + increment; if((new < mem_malloc_start) || (new > mem_malloc_end)){ - printf("sbrk: Out of memory (%d requested > %d available)\n", + printf("## Error: sbrk: out of memory (%d requested > %d available)\n", increment, mem_malloc_end - old); return((void*)MORECORE_FAILURE); } -- 2.25.1