summaryrefslogtreecommitdiffstats
path: root/cpukit
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
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')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/libcsupport/src/free.c2
2 files changed, 5 insertions, 1 deletions
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 <timcussins@eml.cc>
+
+ * libcsupport/src/free.c: Should print begin field not start field.
+
2008-10-14 Wei Shen <cquark@gmail.com>
* 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
);
}