diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-08-07 19:57:17 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-08-19 13:01:33 -0400 |
commit | 0342fd301a9a940210f59fd094f766e7a0671987 (patch) | |
tree | e3ac0ea51a32a8c1dada1238ad252077ef992367 /fs/f2fs/f2fs.h | |
parent | b067ba1f1b3fa7ec798d35e12aed6cdba9cea905 (diff) |
f2fs: make clear on test condition and return types
This patch adds a parentheses to make clear for condition check.
And also it changes the return type for better meanings.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/f2fs.h')
-rw-r--r-- | fs/f2fs/f2fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index c8288c9a4e1e..2e4aa3a51b0d 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h | |||
@@ -1442,5 +1442,5 @@ int f2fs_read_inline_data(struct inode *, struct page *); | |||
1442 | int f2fs_convert_inline_data(struct inode *, pgoff_t, struct page *); | 1442 | int f2fs_convert_inline_data(struct inode *, pgoff_t, struct page *); |
1443 | int f2fs_write_inline_data(struct inode *, struct page *, unsigned int); | 1443 | int f2fs_write_inline_data(struct inode *, struct page *, unsigned int); |
1444 | void truncate_inline_data(struct inode *, u64); | 1444 | void truncate_inline_data(struct inode *, u64); |
1445 | int recover_inline_data(struct inode *, struct page *); | 1445 | bool recover_inline_data(struct inode *, struct page *); |
1446 | #endif | 1446 | #endif |