From 8e37731cd026b802b7a7e4b5082f3254c9a9f553 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 14 Oct 2008 16:08:58 +0000 Subject: [PATCH] 2008-10-14 Tim Cussins * libcsupport/src/free.c: Should print begin field not start field. --- cpukit/ChangeLog | 4 ++++ cpukit/libcsupport/src/free.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 6c7edb8e94..abd7756a72 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2008-10-14 Tim Cussins + + * libcsupport/src/free.c: Should print begin field not start field. + 2008-10-14 Wei Shen * Makefile.am, preinstall.am, libcsupport/src/mknod.c, diff --git a/cpukit/libcsupport/src/free.c b/cpukit/libcsupport/src/free.c index 8929bd0d80..690d9d8903 100644 --- a/cpukit/libcsupport/src/free.c +++ b/cpukit/libcsupport/src/free.c @@ -59,7 +59,7 @@ void free( if ( !_Protected_heap_Free( RTEMS_Malloc_Heap, ptr ) ) { printk( "Program heap: free of bad pointer %p -- range %p - %p \n", ptr, - RTEMS_Malloc_Heap->start, + RTEMS_Malloc_Heap->begin, RTEMS_Malloc_Heap->end ); }