Avoid unused variables.
committer: mfx <mfx> 1071779657 +0000
This commit is contained in:
parent
670b67cc98
commit
b9c976304a
@ -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++;
|
||||
|
||||
@ -135,6 +135,7 @@ static int F(Filter *f)
|
||||
{
|
||||
buf[b[ic+1]] |= 1;
|
||||
}
|
||||
UNUSED(which);
|
||||
|
||||
if (getcto(f, buf) < 0)
|
||||
return -1;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user