Avoid unused variables.

committer: mfx <mfx> 1071779657 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2003-12-18 20:34:17 +00:00
parent 670b67cc98
commit b9c976304a
2 changed files with 3 additions and 3 deletions

View File

@ -134,8 +134,7 @@ static int U(Filter *f)
const unsigned size5 = f->buf_len - 5;
const unsigned addvalue = f->addvalue;
const unsigned cto = (unsigned)f->cto << 24;
unsigned lastcall = 0;
// unsigned lastcall = 0; // lastcall is not used in COND macro
unsigned ic, jc;
for (ic = 0; ic < size5; ic++)
@ -147,7 +146,7 @@ static int U(Filter *f)
set_le32(b+ic+1,jc-ic-1-addvalue-cto);
f->calls++;
ic += 4;
f->lastcall = lastcall = ic+1;
f->lastcall = ic+1;
}
else
f->noncalls++;

View File

@ -135,6 +135,7 @@ static int F(Filter *f)
{
buf[b[ic+1]] |= 1;
}
UNUSED(which);
if (getcto(f, buf) < 0)
return -1;