Oops, dropped some code! Fix it.

This commit is contained in:
Con Kolivas 2010-11-02 00:18:17 +11:00
parent 1e88273ffc
commit c464975b8d

2
rzip.c
View file

@ -275,7 +275,7 @@ again:
static inline tag next_tag(struct rzip_state *st, uchar *p, tag t)
{
t ^= st->hash_index[p[-1]];
t ^= st->hash_index[p[-1]];
t ^= st->hash_index[p[MINIMUM_MATCH - 1]];
return t;
}