summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-15 15:17:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-15 15:17:43 +0000
commitf5d125e761aa1c38dd2c4476e5f379ed94dc2f07 (patch)
treeb2970896f2094a496b11d312d75bf65c2ceca15b /cpukit/libfs
parent2010-06-15 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f5d125e761aa1c38dd2c4476e5f379ed94dc2f07.tar.bz2
2010-06-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* libfs/src/rfs/rtems-rfs-file-system.h: Remove bogus typecast.
Diffstat (limited to 'cpukit/libfs')
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-file-system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-file-system.h b/cpukit/libfs/src/rfs/rtems-rfs-file-system.h
index 7d85a43401..0a137295d4 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-file-system.h
+++ b/cpukit/libfs/src/rfs/rtems-rfs-file-system.h
@@ -308,7 +308,7 @@ struct rtems_rfs_file_system_t
*
* @param _fs Pointer to the file system.
*/
-#define rtems_rfs_fs_size(_fs) (((uint64_t) rtems_rfs_fs_blocks (_fs)) * \
+#define rtems_rfs_fs_size(_fs) (rtems_rfs_fs_blocks (_fs) * \
rtems_rfs_fs_block_size (_fs))
/**