fix the following checkpatch warning:
WARNING: do {} while (0) macros should not be semicolon terminated

Signed-off-by: Zhang Zhen <zhenzhang.zh...@huawei.com>
---
 fs/f2fs/node.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/f2fs/node.h b/fs/f2fs/node.h
index 5decc1a..dbd65a7e0 100644
--- a/fs/f2fs/node.h
+++ b/fs/f2fs/node.h
@@ -59,12 +59,12 @@ struct nat_entry {
        do {                                                            \
                ne->checkpointed = false;                               \
                list_move_tail(&ne->list, &nm_i->dirty_nat_entries);    \
-       } while (0);
+       } while (0)
 #define __clear_nat_cache_dirty(nm_i, ne)                              \
        do {                                                            \
                ne->checkpointed = true;                                \
                list_move_tail(&ne->list, &nm_i->nat_entries);          \
-       } while (0);
+       } while (0)
 #define inc_node_version(version)      (++version)

 static inline void node_info_from_raw_nat(struct node_info *ni,
-- 
1.8.1.2


.





------------------------------------------------------------------------------
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.  Get 
unparalleled scalability from the best Selenium testing platform available.
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to