ext2: resolve Coverity warnings

This commit is contained in:
David van Moolenbroek 2012-08-13 16:37:26 +00:00
parent 4aec9db571
commit 5456f2728e

View file

@ -109,8 +109,8 @@ register struct super_block *sp; /* pointer to a superblock */
if (sp->s_block_size < _MIN_BLOCK_SIZE if (sp->s_block_size < _MIN_BLOCK_SIZE
|| sp->s_block_size >_MAX_BLOCK_SIZE) { || sp->s_block_size >_MAX_BLOCK_SIZE) {
printf("data block size (%u) is invalid\n", sp->s_block_size);
return(EINVAL); return(EINVAL);
printf("data block size is too large\n");
} }
if ((sp->s_block_size % 512) != 0) if ((sp->s_block_size % 512) != 0)