OSDN Git Service

bcache: trivial - remove tailing backslash in macro BTREE_FLAG
authorShenghui Wang <shhuiw@foxmail.com>
Thu, 9 Aug 2018 07:48:51 +0000 (15:48 +0800)
committerJens Axboe <axboe@kernel.dk>
Thu, 9 Aug 2018 14:21:19 +0000 (08:21 -0600)
Remove the tailing backslash in macro BTREE_FLAG in btree.h

Signed-off-by: Shenghui Wang <shhuiw@foxmail.com>
Signed-off-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/btree.h

index d211e2c..68e9d92 100644 (file)
@@ -152,7 +152,7 @@ static inline bool btree_node_ ## flag(struct btree *b)                     \
 {      return test_bit(BTREE_NODE_ ## flag, &b->flags); }              \
                                                                        \
 static inline void set_btree_node_ ## flag(struct btree *b)            \
-{      set_bit(BTREE_NODE_ ## flag, &b->flags); }                      \
+{      set_bit(BTREE_NODE_ ## flag, &b->flags); }
 
 enum btree_flags {
        BTREE_NODE_io_error,