summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c')
-rw-r--r--cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c b/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c
index e895dc5cb8..61bc1cfd3f 100644
--- a/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c
+++ b/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c
@@ -52,8 +52,6 @@ void *rtems_heap_extend_via_sbrk(
bool ok = _Protected_heap_Extend( heap, area_begin, sbrk_size );
if ( ok ) {
- MSBUMP( space_available, sbrk_size );
-
return_this = _Protected_heap_Allocate( heap, alloc_size );
} else {
sbrk( -sbrk_size );