summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libcsupport/include/rtems/malloc.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 46ff8ec2c3..336e39bcdf 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2009-10-15 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * libcsupport/include/rtems/malloc.h: Correct type of
+ rtems_malloc_dirty_helper so usable.
+
2009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1441/cpukit
diff --git a/cpukit/libcsupport/include/rtems/malloc.h b/cpukit/libcsupport/include/rtems/malloc.h
index d3018db73c..487128126a 100644
--- a/cpukit/libcsupport/include/rtems/malloc.h
+++ b/cpukit/libcsupport/include/rtems/malloc.h
@@ -84,7 +84,7 @@ extern rtems_malloc_sbrk_functions_t *rtems_malloc_sbrk_helpers;
* Malloc Plugin to Dirty Memory at Allocation Time
*/
typedef void (*rtems_malloc_dirtier_t)(void *, size_t);
-extern rtems_malloc_dirtier_t *rtems_malloc_dirty_helper;
+extern rtems_malloc_dirtier_t rtems_malloc_dirty_helper;
/** @brief Dirty memory function
*