Remove dead initialization of the inode pointer.

The pointer gets initialized again later in the code. This also
improves code style(9).
This commit is contained in:
Alexander Kabaev 2017-12-23 16:24:02 +00:00
parent ce4ab99d82
commit 5f943cca65

View File

@ -2502,7 +2502,7 @@ readblock(vp, bp, lbn)
struct buf *bp;
ufs2_daddr_t lbn;
{
struct inode *ip = VTOI(vp);
struct inode *ip;
struct bio *bip;
struct fs *fs;