diff options
author | Mariusz Kozlowski <m.kozlowski@tuxland.pl> | 2006-12-06 20:40:10 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 08:39:44 -0800 |
commit | 5296c7bec8c85aa0a6964eca9ff4a1a8847fba8a (patch) | |
tree | c5b96c41f65efe70fc2866747275e53f7d7a07ae | |
parent | 71a3d1b4f7633835048f96a4ba79c8c87f03df4b (diff) | |
download | linux-3.10-5296c7bec8c85aa0a6964eca9ff4a1a8847fba8a.tar.gz linux-3.10-5296c7bec8c85aa0a6964eca9ff4a1a8847fba8a.tar.bz2 linux-3.10-5296c7bec8c85aa0a6964eca9ff4a1a8847fba8a.zip |
[PATCH] fs: reiserfs add missing brackets
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | include/linux/reiserfs_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/reiserfs_fs.h b/include/linux/reiserfs_fs.h index 7bc6bfb8625..d0e4dce33ad 100644 --- a/include/linux/reiserfs_fs.h +++ b/include/linux/reiserfs_fs.h @@ -739,7 +739,7 @@ struct block_head { #define PUT_B_FREE_SPACE(p_s_bh,val) do { set_blkh_free_space(B_BLK_HEAD(p_s_bh),val); } while (0) /* Get right delimiting key. -- little endian */ -#define B_PRIGHT_DELIM_KEY(p_s_bh) (&(blk_right_delim_key(B_BLK_HEAD(p_s_bh)) +#define B_PRIGHT_DELIM_KEY(p_s_bh) (&(blk_right_delim_key(B_BLK_HEAD(p_s_bh)))) /* Does the buffer contain a disk leaf. */ #define B_IS_ITEMS_LEVEL(p_s_bh) (B_LEVEL(p_s_bh) == DISK_LEAF_NODE_LEVEL) |