summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-15 18:56:17 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-15 18:56:17 +0000
commit774aade6018bbc539d4f9e5a09b80d244085efbb (patch)
treef826896d70fd6453e268b97d85ae3e8ffd3615aa
parent2009-10-15 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-774aade6018bbc539d4f9e5a09b80d244085efbb.tar.bz2
2009-10-15 Joel Sherrill <joel.sherrill@OARcorp.com>
* sapi/include/confdefs.h: Correct type of rtems_malloc_dirty_helper so usable.
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/sapi/include/confdefs.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 336e39bcdf..cc0d263bc3 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2009-10-15 Joel Sherrill <joel.sherrill@OARcorp.com>
+ * sapi/include/confdefs.h: Correct type of rtems_malloc_dirty_helper so
+ usable.
+
+2009-10-15 Joel Sherrill <joel.sherrill@OARcorp.com>
+
* libcsupport/include/rtems/malloc.h: Correct type of
rtems_malloc_dirty_helper so usable.
diff --git a/cpukit/sapi/include/confdefs.h b/cpukit/sapi/include/confdefs.h
index cfb1facc89..87e0cb2bc1 100644
--- a/cpukit/sapi/include/confdefs.h
+++ b/cpukit/sapi/include/confdefs.h
@@ -360,7 +360,7 @@ extern rtems_configuration_table Configuration;
* allocated. This is helpful for finding unitialized data structure
* problems.
*/
- rtems_malloc_dirtier_t *rtems_malloc_dirty_helper =
+ rtems_malloc_dirtier_t rtems_malloc_dirty_helper =
#if defined(CONFIGURE_MALLOC_DIRTY)
rtems_malloc_dirty_memory;
#else