Cosmetic fix
authorPiotr Dymacz <pepe2k@gmail.com>
Thu, 5 Nov 2015 20:27:44 +0000 (21:27 +0100)
committerPiotr Dymacz <pepe2k@gmail.com>
Thu, 5 Nov 2015 20:27:44 +0000 (21:27 +0100)
u-boot/lib_mips/board.c

index c340b0abb03f06d1268bf0a5f8be712be6c5f083..5577459c383ea4c0bf66ddd63b08cb319e30ddc5 100644 (file)
@@ -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);
        }