* score/src/heap.c: Avoid integer overflow.
This commit is contained in:
Sebastian Huber
2011-04-05 09:50:02 +00:00
parent 5bd6123f77
commit 6503ac9b00
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2011-04-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
* score/src/heap.c: Avoid integer overflow.
2010-07-28 Gedare Bloom <giddyup44@yahoo.com>
PR 1641/cpukit

View File

@@ -162,7 +162,7 @@ static uint32_t instance = 0;
)
{
/* FIXME */
_Internal_error_Occurred( 0xdeadbeef, false, 0xdeadbeef );
_Internal_error_Occurred( INTERNAL_ERROR_CORE, false, 0xdeadbeef );
}
#endif