summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport/src/base_fs.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-06-15 22:16:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-06-15 22:16:30 +0000
commit937ab62c3070f76e26c14d25d705d9167136f26c (patch)
treed5532e9be310b60248b83b91548a511c781204d3 /c/src/exec/libcsupport/src/base_fs.c
parentRegenerated. (diff)
downloadrtems-937ab62c3070f76e26c14d25d705d9167136f26c.tar.bz2
After comments D. V. Henkel-Wallace <gumby@zembu.com>, the interface to
mount() was changed to avoid the use of a string as the options.
Diffstat (limited to 'c/src/exec/libcsupport/src/base_fs.c')
-rw-r--r--c/src/exec/libcsupport/src/base_fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/libcsupport/src/base_fs.c b/c/src/exec/libcsupport/src/base_fs.c
index a3bb196482..e5f53c042b 100644
--- a/c/src/exec/libcsupport/src/base_fs.c
+++ b/c/src/exec/libcsupport/src/base_fs.c
@@ -55,7 +55,7 @@ void rtems_filesystem_initialize( void )
status = mount(
&first_entry,
&IMFS_ops,
- "RW",
+ RTEMS_FILESYSTEM_READ_WRITE,
NULL,
NULL );
if( status == -1 ){