summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/base_fs.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-08-02 18:24:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-08-02 18:24:15 +0000
commit2d08be11ddc0194e0b997ed5f82b306e6eed73ee (patch)
tree24b826abdb1ec9686525fe609d8c705d690c19e5 /cpukit/libcsupport/src/base_fs.c
parent2010-07-30 Bharath Suri <bharath.s.jois@gmail.com> (diff)
downloadrtems-2d08be11ddc0194e0b997ed5f82b306e6eed73ee.tar.bz2
2010-08-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/base_fs.c, libcsupport/src/rtems_mkdir.c: Formatting.
Diffstat (limited to 'cpukit/libcsupport/src/base_fs.c')
-rw-r--r--cpukit/libcsupport/src/base_fs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/base_fs.c b/cpukit/libcsupport/src/base_fs.c
index e552769577..b5681eda63 100644
--- a/cpukit/libcsupport/src/base_fs.c
+++ b/cpukit/libcsupport/src/base_fs.c
@@ -48,14 +48,12 @@ void rtems_filesystem_initialize( void )
/*
* mount the first filesystem.
*/
-
if ( rtems_filesystem_mount_table_size == 0 )
rtems_fatal_error_occurred( 0xABCD0001 );
mt = &rtems_filesystem_mount_table[0];
status = mount( mt->device, mt->mount_point, mt->type, mt->fsoptions, NULL );
-
if ( status == -1 )
rtems_fatal_error_occurred( 0xABCD0002 );