summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/free.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-10-14 16:08:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-10-14 16:08:58 +0000
commit8e37731cd026b802b7a7e4b5082f3254c9a9f553 (patch)
tree56d22492eec6e1d3973342cdcfb9a9d83b54076b /cpukit/libcsupport/src/free.c
parent2008-10-14 Wei Shen <cquark@gmail.com> (diff)
downloadrtems-8e37731cd026b802b7a7e4b5082f3254c9a9f553.tar.bz2
2008-10-14 Tim Cussins <timcussins@eml.cc>
* libcsupport/src/free.c: Should print begin field not start field.
Diffstat (limited to 'cpukit/libcsupport/src/free.c')
-rw-r--r--cpukit/libcsupport/src/free.c2
1 files changed, 1 insertions, 1 deletions
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
);
}