summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-15 15:17:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-15 15:17:35 +0000
commitd691d0a01d390add525388489b2fc70f34315c99 (patch)
tree795e07316178a4cb515c31f336ac9d677a4841f6 /cpukit
parent2010-06-15 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-d691d0a01d390add525388489b2fc70f34315c99.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')
-rw-r--r--cpukit/ChangeLog1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-file-system.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 343729d76e..ed9a306463 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,6 @@
2010-06-15 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * libfs/src/rfs/rtems-rfs-file-system.h: Remove bogus typecast.
* libfs/src/rfs/rtems-rfs-block.c, libfs/src/rfs/rtems-rfs-buffer.c,
libnetworking/nfs/bootp_subr.c: Misc. 64bit-compatibility fixes.
* posix/include/rtems/posix/pthread.h: Remove stray comment.
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))
/**