From bf95ccb5068543b453c1dfbf5e8ae7b6c814e1e4 Mon Sep 17 00:00:00 2001 From: Thomas Doerfler Date: Tue, 27 May 2008 10:34:15 +0000 Subject: Added const qualifier to various pointers and data tables to reduce size of data area. IMFS: Fixed creation of symbolic links to avoid a compiler warning. DOSFS: Use LibBlock instead of read() to read the boot record. --- cpukit/include/rtems/fs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/include/rtems/fs.h') diff --git a/cpukit/include/rtems/fs.h b/cpukit/include/rtems/fs.h index 6f4f54c259..01ae4ab28d 100644 --- a/cpukit/include/rtems/fs.h +++ b/cpukit/include/rtems/fs.h @@ -45,10 +45,10 @@ typedef struct _rtems_filesystem_operations_table struct rtems_filesystem_location_info_tt { - void *node_access; - rtems_filesystem_file_handlers_r *handlers; - rtems_filesystem_operations_table *ops; - rtems_filesystem_mount_table_entry_t *mt_entry; + void *node_access; + const rtems_filesystem_file_handlers_r *handlers; + const rtems_filesystem_operations_table *ops; + rtems_filesystem_mount_table_entry_t *mt_entry; }; #ifdef __cplusplus -- cgit v1.2.3