Eliminated one variable from hash_search().

This commit is contained in:
Wayne Davison
2006-02-28 00:31:51 +00:00
parent 900cfcb584
commit c64ca7ef58

View File

@@ -162,13 +162,11 @@ static void hash_search(int f,struct sum_struct *s,
do {
int done_csum2 = 0;
int32 i;
uint32 t;
if (verbose > 4)
rprintf(FINFO,"offset=%.0f sum=%08x\n",(double)offset,sum);
t = GETTAG(sum);
i = sum_table[t];
i = sum_table[GETTAG(sum)];
if (i < 0)
goto null_hash;