From b50cde42223dc78cab5447e12cb574c4fc9403b6 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 10 Aug 2010 14:41:47 +0000 Subject: 2010-08-10 Joel Sherrill PR 1665/testing * psximfs02/init.c: Fix uninitialized variable warning. --- testsuites/psxtests/psximfs02/init.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'testsuites/psxtests/psximfs02/init.c') diff --git a/testsuites/psxtests/psximfs02/init.c b/testsuites/psxtests/psximfs02/init.c index 98c0db81e9..861bf0cca5 100644 --- a/testsuites/psxtests/psximfs02/init.c +++ b/testsuites/psxtests/psximfs02/init.c @@ -27,7 +27,6 @@ rtems_task Init( { int status = 0; void *alloc_ptr = (void *)0; - Heap_Information_block Info; char linkname_n[20] = {0}; char linkname_p[20] = {0}; int i; @@ -120,7 +119,7 @@ rtems_task Init( free( alloc_ptr ); puts( "Allocate most of heap" ); - alloc_ptr = malloc( Info.Free.largest - 40 ); + alloc_ptr = malloc( malloc_free_space() - 40 ); puts( "Attempt to create /node-slink-2 for /node -- expect ENOMEM" ); status = symlink( "/node", "node-slink-2" ); -- cgit v1.2.3