summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/malloctest/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/malloctest/init.c')
-rw-r--r--testsuites/libtests/malloctest/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/libtests/malloctest/init.c b/testsuites/libtests/malloctest/init.c
index 2ca8197e5c..669090ece0 100644
--- a/testsuites/libtests/malloctest/init.c
+++ b/testsuites/libtests/malloctest/init.c
@@ -162,7 +162,7 @@ void test_heap_cases_1()
test_heap_init();
puts( "Heap Initialized" );
p1 = _Heap_Allocate( &TestHeap, 500 );
- rtems_test_assert( p2 != NULL );
+ rtems_test_assert( p1 != NULL );
p2 = _Heap_Allocate( &TestHeap, 500 );
rtems_test_assert( p2 != NULL );
rsc = _Heap_Resize_block( &TestHeap, p1, 256, &u1, &u2 );