kernel/fs/ext2/xattr.c
.. .. @@ -694,10 +694,10 @@ 694 694 /* We need to allocate a new block */ 695 695 ext2_fsblk_t goal = ext2_group_first_block_no(sb, 696 696 EXT2_I(inode)->i_block_group); 697 - int block = ext2_new_block(inode, goal, &error);697 + ext2_fsblk_t block = ext2_new_block(inode, goal, &error);698 698 if (error) 699 699 goto cleanup; 700 - ea_idebug(inode, "creating block %d", block);700 + ea_idebug(inode, "creating block %lu", block);701 701 702 702 new_bh = sb_getblk(sb, block); 703 703 if (unlikely(!new_bh)) {