diff options
author | 2017-11-02 20:41:01 +0800 | |
---|---|---|
committer | 2017-11-05 16:42:06 -0800 | |
commit | dee668c14313bdc3a6a532980200908c046dda11 (patch) | |
tree | 4c20b8ea9aee6a443b30dc93fde1072720f1846f /fs/f2fs/checkpoint.c | |
parent | f2fs: don't bother with inode->i_version (diff) | |
download | wireguard-linux-dee668c14313bdc3a6a532980200908c046dda11.tar.xz wireguard-linux-dee668c14313bdc3a6a532980200908c046dda11.zip |
f2fs: remove unneeded semicolon
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | fs/f2fs/checkpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 78e1b2998bbd..98777c1ae70c 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -1016,7 +1016,7 @@ int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi) update_inode_page(inode); iput(inode); } - }; + } return 0; } |