From 991efb611cf611abb8568cb03133b8723899f605 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 27 Feb 2008 21:50:05 +0000 Subject: 2008-02-27 Joel Sherrill * malloctest/init.c: Fix return status check. --- testsuites/libtests/malloctest/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuites/libtests/malloctest/init.c') diff --git a/testsuites/libtests/malloctest/init.c b/testsuites/libtests/malloctest/init.c index dc1f0cf39d..e6400f4dec 100644 --- a/testsuites/libtests/malloctest/init.c +++ b/testsuites/libtests/malloctest/init.c @@ -198,7 +198,7 @@ void test_heap_info(void) puts( "malloc_info - check free space drops after malloc" ); sc = malloc_info( &the_info ); - rtems_test_assert( sc == -1 ); + rtems_test_assert( sc == 0 ); s1 = the_info.Free.largest; p1 = malloc( 512 ); -- cgit v1.2.3