From c64ca7ef58bf3b2eb41cd0d1cd809fe934be4d8a Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 28 Feb 2006 00:31:51 +0000 Subject: [PATCH] Eliminated one variable from hash_search(). --- match.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/match.c b/match.c index ee49a0ef..300e2ba0 100644 --- a/match.c +++ b/match.c @@ -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; -- 2.34.1