Avoid unused variables.
committer: mfx <mfx> 1071779657 +0000
This commit is contained in:
+2
-3
@@ -134,8 +134,7 @@ static int U(Filter *f)
|
|||||||
const unsigned size5 = f->buf_len - 5;
|
const unsigned size5 = f->buf_len - 5;
|
||||||
const unsigned addvalue = f->addvalue;
|
const unsigned addvalue = f->addvalue;
|
||||||
const unsigned cto = (unsigned)f->cto << 24;
|
const unsigned cto = (unsigned)f->cto << 24;
|
||||||
unsigned lastcall = 0;
|
// unsigned lastcall = 0; // lastcall is not used in COND macro
|
||||||
|
|
||||||
unsigned ic, jc;
|
unsigned ic, jc;
|
||||||
|
|
||||||
for (ic = 0; ic < size5; ic++)
|
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);
|
set_le32(b+ic+1,jc-ic-1-addvalue-cto);
|
||||||
f->calls++;
|
f->calls++;
|
||||||
ic += 4;
|
ic += 4;
|
||||||
f->lastcall = lastcall = ic+1;
|
f->lastcall = ic+1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
f->noncalls++;
|
f->noncalls++;
|
||||||
|
|||||||
@@ -135,6 +135,7 @@ static int F(Filter *f)
|
|||||||
{
|
{
|
||||||
buf[b[ic+1]] |= 1;
|
buf[b[ic+1]] |= 1;
|
||||||
}
|
}
|
||||||
|
UNUSED(which);
|
||||||
|
|
||||||
if (getcto(f, buf) < 0)
|
if (getcto(f, buf) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|||||||
Reference in New Issue
Block a user