summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-01 10:42:52 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-01 10:42:52 +0000
commit8f67ada48a2c1f1c84645715e5379f25056b869b (patch)
tree3ae0467b236be2dbff1b99938fa14cec694264ff /cpukit/libcsupport
parent2010-06-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-8f67ada48a2c1f1c84645715e5379f25056b869b.tar.bz2
2010-06-01 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/include/rtems/libio.h, libcsupport/src/mount-mgr.c: Add missing 'const'.
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h2
-rw-r--r--cpukit/libcsupport/src/mount-mgr.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index 794c1ca220..d6cc6e9cbd 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -314,7 +314,7 @@ const rtems_filesystem_table_t* rtems_filesystem_table_first( void );
* Get the next entry in the file system table.
*/
const rtems_filesystem_table_t*
-rtems_filesystem_table_next( rtems_filesystem_table_t *entry );
+rtems_filesystem_table_next( const rtems_filesystem_table_t *entry );
/*
* Get the first entry in the mount table.
diff --git a/cpukit/libcsupport/src/mount-mgr.c b/cpukit/libcsupport/src/mount-mgr.c
index 74e3c93333..68180a699d 100644
--- a/cpukit/libcsupport/src/mount-mgr.c
+++ b/cpukit/libcsupport/src/mount-mgr.c
@@ -65,7 +65,7 @@ rtems_filesystem_table_first(
*/
const rtems_filesystem_table_t*
rtems_filesystem_table_next(
- rtems_filesystem_table_t *entry
+ const rtems_filesystem_table_t *entry
)
{
const rtems_filesystem_table_t* fs;