aboutsummaryrefslogtreecommitdiffstats
path: root/fs/reiserfs
diff options
context:
space:
mode:
authorRandy.Dunlap <rddunlap@osdl.org>2005-05-05 16:16:11 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-05 16:36:48 -0700
commit291c4a75ce7632ee5c565359fb875ba0597f76be (patch)
treebe0fe48738b481b4b172cc9a98ac799ca79aece2 /fs/reiserfs
parent[PATCH] cyrix: eliminate bad section references (diff)
downloadlinux-dev-291c4a75ce7632ee5c565359fb875ba0597f76be.tar.xz
linux-dev-291c4a75ce7632ee5c565359fb875ba0597f76be.zip
[PATCH] reiserfs: use NULL instead of 0
Use NULL instead of 0 for pointer (sparse warning): fs/reiserfs/namei.c:611:50: warning: Using plain integer as NULL pointer Signed-off-by: Randy Dunlap <rddunlap@osdl.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r--fs/reiserfs/namei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/reiserfs/namei.c b/fs/reiserfs/namei.c
index 80e92d9b81cb..7d4dc5f5aa8b 100644
--- a/fs/reiserfs/namei.c
+++ b/fs/reiserfs/namei.c
@@ -608,7 +608,7 @@ static int reiserfs_create (struct inode * dir, struct dentry *dentry, int mode,
goto out_failed;
}
- retval = reiserfs_new_inode (&th, dir, mode, 0, 0/*i_size*/, dentry, inode);
+ retval = reiserfs_new_inode (&th, dir, mode, NULL, 0/*i_size*/, dentry, inode);
if (retval)
goto out_failed;