From c08349a85aa79127a98310a83dbac303d27dbbf4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 14 Oct 2008 16:09:47 +0000 Subject: [PATCH] 2008-10-14 Tim Cussins PR 1330/cpukit * libcsupport/src/free.c: Should print begin field not start field. --- cpukit/ChangeLog | 5 +++++ cpukit/libcsupport/src/free.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 98df676479..a27ad4567f 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,8 @@ +2008-10-14 Tim Cussins + + PR 1330/cpukit + * libcsupport/src/free.c: Should print begin field not start field. + 2008-10-02 Thomas Doerfler * score/cpu/powerpc/rtems/score/cpu.h: adapt timebase macros to diff --git a/cpukit/libcsupport/src/free.c b/cpukit/libcsupport/src/free.c index e7d92dd1aa..3948d01e53 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 ); }