*: use NULL for null pointers

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-03-05 14:10:54 +01:00
parent 44fbfa78ca
commit 4b1100edd8
19 changed files with 36 additions and 36 deletions

View File

@@ -109,7 +109,7 @@ errcode_t ext2fs_alloc_block(ext2_filsys fs, blk_t goal,
{
errcode_t retval;
blk_t block;
char *buf = 0;
char *buf = NULL;
if (!block_buf) {
retval = ext2fs_get_mem(fs->blocksize, &buf);