diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2011-02-22 05:01:42 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-02-22 05:01:42 +0300 |
commit | 7dc576158d7e5cdff3349f78598fdb4080536342 (patch) | |
tree | e7be15a8ee8add729915c81e9cb39cd55d6b572d /fs/ext4/xattr.c | |
parent | da488945f4bf4096f4ab6091938469bd8822cfec (diff) | |
download | linux-7dc576158d7e5cdff3349f78598fdb4080536342.tar.xz |
ext4: Fix sparse warning: Using plain integer as NULL pointer
This patch fixes the warning "Using plain integer as NULL pointer",
generated by sparse, by replacing the offending 0s with NULL.
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/xattr.c')
-rw-r--r-- | fs/ext4/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c index fc32176eee39..f4c03af05d69 100644 --- a/fs/ext4/xattr.c +++ b/fs/ext4/xattr.c @@ -833,7 +833,7 @@ inserted: new_bh = sb_getblk(sb, block); if (!new_bh) { getblk_failed: - ext4_free_blocks(handle, inode, 0, block, 1, + ext4_free_blocks(handle, inode, NULL, block, 1, EXT4_FREE_BLOCKS_METADATA); error = -EIO; goto cleanup; |