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
+2 -3
View File
@@ -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++;
+1
View File
@@ -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;