summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/pheapgetblocksize.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/pheapgetblocksize.c')
-rw-r--r--cpukit/score/src/pheapgetblocksize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/pheapgetblocksize.c b/cpukit/score/src/pheapgetblocksize.c
index 897236f370..029ef7b2c7 100644
--- a/cpukit/score/src/pheapgetblocksize.c
+++ b/cpukit/score/src/pheapgetblocksize.c
@@ -16,13 +16,13 @@
#include <rtems/system.h>
#include <rtems/score/protectedheap.h>
-boolean _Protected_heap_Get_block_size(
+bool _Protected_heap_Get_block_size(
Heap_Control *the_heap,
void *starting_address,
size_t *size
)
{
- boolean status;
+ bool status;
_RTEMS_Lock_allocator();
status = _Heap_Size_of_user_area( the_heap, starting_address, size );