2008-10-14 Tim Cussins <timcussins@eml.cc>

PR 1330/cpukit
	* libcsupport/src/free.c: Should print begin field not start field.
This commit is contained in:
Joel Sherrill
2008-10-14 16:09:47 +00:00
parent 127d0a448f
commit c08349a85a
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2008-10-14 Tim Cussins <timcussins@eml.cc>
PR 1330/cpukit
* libcsupport/src/free.c: Should print begin field not start field.
2008-10-02 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* score/cpu/powerpc/rtems/score/cpu.h: adapt timebase macros to

View File

@@ -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
);
}