From 654169dc5038c5ac4c0766d0d76862761269bdbb Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 21 Jun 2010 21:13:30 +0000 Subject: 2010-06-21 Joel Sherrill PR 1581/cpukit * libcsupport/include/rtems/malloc.h, sapi/include/confdefs.h: Remove extra * on function pointer declaration. --- cpukit/ChangeLog | 6 ++++++ cpukit/libcsupport/include/rtems/malloc.h | 2 +- cpukit/sapi/include/confdefs.h | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 1294585235..3e8fb4c53b 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,9 @@ +2010-06-21 Joel Sherrill + + PR 1581/cpukit + * libcsupport/include/rtems/malloc.h, sapi/include/confdefs.h: Remove + extra * on function pointer declaration. + 2010-06-21 Peter Dufault PR 1570/cpukit diff --git a/cpukit/libcsupport/include/rtems/malloc.h b/cpukit/libcsupport/include/rtems/malloc.h index b061683b4f..c9ce0f0fbf 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 * diff --git a/cpukit/sapi/include/confdefs.h b/cpukit/sapi/include/confdefs.h index c3ae9467ac..ab5c7a3155 100644 --- a/cpukit/sapi/include/confdefs.h +++ b/cpukit/sapi/include/confdefs.h @@ -679,7 +679,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper = * 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 -- cgit v1.2.3