summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapextend.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/heapextend.c')
-rw-r--r--cpukit/score/src/heapextend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/heapextend.c b/cpukit/score/src/heapextend.c
index e131bbce8f..d1608d62ea 100644
--- a/cpukit/score/src/heapextend.c
+++ b/cpukit/score/src/heapextend.c
@@ -41,7 +41,7 @@ Heap_Extend_status _Heap_Extend(
{
Heap_Block *the_block;
uint32_t *p;
-
+
/*
* The overhead was taken from the original heap memory.
*/
@@ -106,6 +106,6 @@ Heap_Extend_status _Heap_Extend(
*p = sizeof(uint32_t );
p++;
_Heap_Free( the_heap, p );
-
+
return HEAP_EXTEND_SUCCESSFUL;
}