summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/monitor/mon-mpci.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/monitor/mon-mpci.c')
-rw-r--r--cpukit/libmisc/monitor/mon-mpci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libmisc/monitor/mon-mpci.c b/cpukit/libmisc/monitor/mon-mpci.c
index fe78da386a..84f5014cea 100644
--- a/cpukit/libmisc/monitor/mon-mpci.c
+++ b/cpukit/libmisc/monitor/mon-mpci.c
@@ -29,7 +29,7 @@ rtems_monitor_mpci_canonical(
void *config_void
)
{
- rtems_configuration_table *c = &Configuration;
+ const rtems_configuration_table *c = &Configuration;
rtems_multiprocessing_table *m;
rtems_mpci_table *mt;
@@ -64,14 +64,14 @@ rtems_monitor_mpci_canonical(
* other nodes...)
*/
-void *
+const void *
rtems_monitor_mpci_next(
void *object_info,
rtems_monitor_mpci_t *canonical_mpci,
rtems_id *next_id
)
{
- rtems_configuration_table *c = &Configuration;
+ const rtems_configuration_table *c = &Configuration;
int n = rtems_object_id_get_index(*next_id);
if (n >= 1)