projects
/
oweals
/
u-boot_mod.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d3f5ed
)
Cosmetic fix
author
Piotr Dymacz
<pepe2k@gmail.com>
Thu, 5 Nov 2015 20:27:44 +0000
(21:27 +0100)
committer
Piotr Dymacz
<pepe2k@gmail.com>
Thu, 5 Nov 2015 20:27:44 +0000
(21:27 +0100)
u-boot/lib_mips/board.c
patch
|
blob
|
history
diff --git
a/u-boot/lib_mips/board.c
b/u-boot/lib_mips/board.c
index c340b0abb03f06d1268bf0a5f8be712be6c5f083..5577459c383ea4c0bf66ddd63b08cb319e30ddc5 100644
(file)
--- 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: O
ut of memory (%d requested > %d available)\n",
+ printf("
## Error: sbrk: o
ut of memory (%d requested > %d available)\n",
increment, mem_malloc_end - old);
return((void*)MORECORE_FAILURE);
}