[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1239716929-29202-1-git-send-email-ben-linux@fluff.org>
Date: Tue, 14 Apr 2009 14:48:49 +0100
From: Ben Dooks <ben-linux@...ff.org>
To: linux-kernel@...r.kernel.org
Cc: linux-fsdevel@...r.kernel.org, viro@...iv.linux.org.uk,
Ben Dooks <ben-linux@...ff.org>
Subject: [PATCH] fs/super.c: Fix cast of 0 to pointer.
Fix the following warning in fs/super.c:
900:19: warning: Using plain integer as NULL pointer.
Signed-off-by: Ben Dooks <ben-linux@...ff.org>
---
fs/super.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/super.c b/fs/super.c
index 786fe7d..14e59bc 100644
--- a/fs/super.c
+++ b/fs/super.c
@@ -897,7 +897,7 @@ void kill_block_super(struct super_block *sb)
struct block_device *bdev = sb->s_bdev;
fmode_t mode = sb->s_mode;
- bdev->bd_super = 0;
+ bdev->bd_super = NULL;
generic_shutdown_super(sb);
sync_blockdev(bdev);
close_bdev_exclusive(bdev, mode);
--
1.5.6.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists