From dc92d477d1d677f8adda08f479ac2b8e0a01a3d8 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Wed, 9 Mar 2011 13:10:00 +1100 Subject: [PATCH] Remove unused best_h. --- rzip.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rzip.c b/rzip.c index b2b412b..d3d939f 100644 --- a/rzip.c +++ b/rzip.c @@ -454,8 +454,8 @@ static i64 find_best_match(rzip_control *control, struct rzip_state *st, tag t, i64 *offset, i64 *reverse) { i64 length = 0; - i64 h, best_h; i64 rev; + i64 h; rev = 0; *reverse = 0; @@ -479,7 +479,6 @@ static i64 find_best_match(rzip_control *control, struct rzip_state *st, tag t, length = mlen; (*offset) = st->hash_table[h].offset - rev; (*reverse) = rev; - best_h = h; } }