diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-02-17 13:45:33 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-17 14:34:51 -0800 |
commit | 714b71a3a91f63e0852ad9a07edc3820800c681f (patch) | |
tree | 5086c3896d518674abb0f23ecf29ff5716c3396f /fs/reiserfs | |
parent | ed3ad79f87f31beed64778af0b29aff3074f700e (diff) | |
download | op-kernel-dev-714b71a3a91f63e0852ad9a07edc3820800c681f.zip op-kernel-dev-714b71a3a91f63e0852ad9a07edc3820800c681f.tar.gz |
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>
Diffstat (limited to 'fs/reiserfs')
-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 a7eec98..e72401e 100644 --- a/fs/reiserfs/inode.c +++ b/fs/reiserfs/inode.c @@ -2766,7 +2766,7 @@ static int reiserfs_write_begin(struct file *file, int old_ref = 0; inode = mapping->host; - *fsdata = 0; + *fsdata = NULL; if (flags & AOP_FLAG_CONT_EXPAND && (pos & (inode->i_sb->s_blocksize - 1)) == 0) { pos ++; |