diff options
author | Nathan Scott <nathans@sgi.com> | 2006-09-28 10:58:40 +1000 |
---|---|---|
committer | Tim Shimmin <tes@sgi.com> | 2006-09-28 10:58:40 +1000 |
commit | 1121b219bf3fe6d1bd1d1f7618cc5e0c409fabb4 (patch) | |
tree | e4fa877ce76e9d8aca0addf38611c882ff5d726a /fs/xfs/xfs_ialloc.c | |
parent | 8801bb99e4425b9a778b355153ab3254bb431d92 (diff) | |
download | kernel-crypto-1121b219bf3fe6d1bd1d1f7618cc5e0c409fabb4.tar.gz kernel-crypto-1121b219bf3fe6d1bd1d1f7618cc5e0c409fabb4.tar.xz kernel-crypto-1121b219bf3fe6d1bd1d1f7618cc5e0c409fabb4.zip |
[XFS] use NULL for pointer initialisation instead of zero-cast-to-ptr
SGI-PV: 954580
SGI-Modid: xfs-linux-melb:xfs-kern:26562a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_ialloc.c')
-rw-r--r-- | fs/xfs/xfs_ialloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_ialloc.c b/fs/xfs/xfs_ialloc.c index 1a5e3ff33ef..76813d608de 100644 --- a/fs/xfs/xfs_ialloc.c +++ b/fs/xfs/xfs_ialloc.c @@ -458,7 +458,7 @@ nextag: */ if (XFS_FORCED_SHUTDOWN(mp)) { up_read(&mp->m_peraglock); - return (xfs_buf_t *)0; + return NULL; } agno++; if (agno >= agcount) @@ -466,7 +466,7 @@ nextag: if (agno == pagno) { if (flags == 0) { up_read(&mp->m_peraglock); - return (xfs_buf_t *)0; + return NULL; } flags = 0; } |