diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-02-17 16:45:33 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-17 17:34:51 -0500 |
commit | 714b71a3a91f63e0852ad9a07edc3820800c681f (patch) | |
tree | 5086c3896d518674abb0f23ecf29ff5716c3396f | |
parent | ed3ad79f87f31beed64778af0b29aff3074f700e (diff) |
fs/reiserfs/inode.c: replace 0 by NULL for pointers
Fix sparse warning:
fs/reiserfs/inode.c:2769:19: warning: Using plain integer as NULL pointer
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/reiserfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/reiserfs/inode.c b/fs/reiserfs/inode.c index a7eec9888f10..e72401e1f995 100644 --- a/fs/reiserfs/inode.c +++ b/fs/reiserfs/inode.c | |||
@@ -2766,7 +2766,7 @@ static int reiserfs_write_begin(struct file *file, | |||
2766 | int old_ref = 0; | 2766 | int old_ref = 0; |
2767 | 2767 | ||
2768 | inode = mapping->host; | 2768 | inode = mapping->host; |
2769 | *fsdata = 0; | 2769 | *fsdata = NULL; |
2770 | if (flags & AOP_FLAG_CONT_EXPAND && | 2770 | if (flags & AOP_FLAG_CONT_EXPAND && |
2771 | (pos & (inode->i_sb->s_blocksize - 1)) == 0) { | 2771 | (pos & (inode->i_sb->s_blocksize - 1)) == 0) { |
2772 | pos ++; | 2772 | pos ++; |