summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heap.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-04 23:00:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-04 23:00:04 +0000
commit112365808642f0eeb2d2a8a156e5d6e64cd92067 (patch)
treef13d18e526a254bd6497878bf755db0d8258e0c0 /cpukit/score/src/heap.c
parent2010-11-04 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-112365808642f0eeb2d2a8a156e5d6e64cd92067.tar.bz2
2010-11-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/stackchk/check.c: Make compile again. * sapi/src/io.c, score/src/heap.c: Address dead assignment issues found by clang.
Diffstat (limited to 'cpukit/score/src/heap.c')
-rw-r--r--cpukit/score/src/heap.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpukit/score/src/heap.c b/cpukit/score/src/heap.c
index afde241931..b972d84c3c 100644
--- a/cpukit/score/src/heap.c
+++ b/cpukit/score/src/heap.c
@@ -416,7 +416,6 @@ static Heap_Block *_Heap_Block_allocate_from_end(
uintptr_t const prev_block_size = _Heap_Block_size( prev_block );
block = prev_block;
- block_begin = (uintptr_t) block;
block_size += prev_block_size;
}