From 8f67ada48a2c1f1c84645715e5379f25056b869b Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 1 Jun 2010 10:42:52 +0000 Subject: =?UTF-8?q?2010-06-01=20=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libcsupport/include/rtems/libio.h, libcsupport/src/mount-mgr.c: Add missing 'const'. --- cpukit/ChangeLog | 2 ++ cpukit/libcsupport/include/rtems/libio.h | 2 +- cpukit/libcsupport/src/mount-mgr.c | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'cpukit') diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index c39b48c5dd..86fc174123 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,5 +1,7 @@ 2010-06-01 Ralf Corsépius + * libcsupport/include/rtems/libio.h, libcsupport/src/mount-mgr.c: + Add missing 'const'. * libfs/src/nfsclient/src/xdr_mbuf.c: Warning removal. 2010-05-31 Joel Sherrill 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; -- cgit v1.2.3