summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2013-06-11 22:01:56 +0200
committerHelge Deller <deller@gmx.de>2013-06-11 22:01:56 +0200
commit570a4f2d72180f72f6637500f9aa2f20900cfb75 (patch)
treea7ea5fff30ceba593f2e2e1941580df61fa00f8a
parent9dd14d2c6a1c293dece2c3ff6d5d99f864070e29 (diff)
downloadpalo-570a4f2d72180f72f6637500f9aa2f20900cfb75.tar.gz
drop unneeded variable.
-rw-r--r--ipl/ext2.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ipl/ext2.c b/ipl/ext2.c
index 9fc334e..d622b24 100644
--- a/ipl/ext2.c
+++ b/ipl/ext2.c
@@ -378,7 +378,6 @@ static void ext2_iput(struct ext2_inode *ip)
*/
static int ext2_blkno(struct ext2_inode *ip, int blkoff)
{
- unsigned int *lp;
unsigned int *ilp;
unsigned int *dlp;
int blkno;
@@ -388,7 +387,6 @@ static int ext2_blkno(struct ext2_inode *ip, int blkoff)
ilp = (unsigned int *)iblkbuf;
dlp = (unsigned int *)diblkbuf;
- lp = (unsigned int *)blkbuf;
/* If it's a direct block, it's easy! */
if (blkoff <= directlim) {