2011-03-15 Chris Johns <chrisj@rtems.org>

PR 1757/filesystem
        * libfs/src/rfs/rtems-rfs-block-pos.h: Fix the bug in equal
        compare.
This commit is contained in:
Chris Johns
2011-03-15 05:14:39 +00:00
parent d0fcd0b8a6
commit ecfeb16b42
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -1,3 +1,9 @@
2011-03-15 Chris Johns <chrisj@rtems.org>
PR 1757/filesystem
* libfs/src/rfs/rtems-rfs-block-pos.h: Fix the bug in equal
compare.
2011-03-15 Chris Johns <chrisj@rtems.org>
PR 1763/shell
+1 -1
View File
@@ -196,7 +196,7 @@ typedef struct rtems_rfs_block_size_s
* Do the sizes match ?
*/
#define rtems_rfs_block_size_equal(_lhs, _rhs) \
(((_lhs)->count == (_rhs)->count) && ((_lhs)->offset == (_rhs)->count))
(((_lhs)->count == (_rhs)->count) && ((_lhs)->offset == (_rhs)->offset))
/**
* Zero a block size.