diff options
author | Randy.Dunlap <rddunlap@osdl.org> | 2005-05-05 19:16:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-05 19:36:48 -0400 |
commit | 291c4a75ce7632ee5c565359fb875ba0597f76be (patch) | |
tree | be0fe48738b481b4b172cc9a98ac799ca79aece2 /fs/reiserfs | |
parent | a27e951f1e9362411eba81e724fafca20f1b0563 (diff) |
[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.c | 2 |
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, | |||
608 | goto out_failed; | 608 | goto out_failed; |
609 | } | 609 | } |
610 | 610 | ||
611 | retval = reiserfs_new_inode (&th, dir, mode, 0, 0/*i_size*/, dentry, inode); | 611 | retval = reiserfs_new_inode (&th, dir, mode, NULL, 0/*i_size*/, dentry, inode); |
612 | if (retval) | 612 | if (retval) |
613 | goto out_failed; | 613 | goto out_failed; |
614 | 614 | ||