mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-26 03:39:42 +08:00
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:
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user