Commit 34f961bb authored by Wayne Davison's avatar Wayne Davison

Got the order of s1 and s2 right in the debug output.

parent 2384f9e1
......@@ -159,7 +159,7 @@ static void hash_search(int f,struct sum_struct *s,
if (verbose > 4) {
rprintf(FINFO, "offset=%.0f sum=%04x%04x\n",
(double)offset, s1 & 0xFFFF, s2 & 0xFFFF);
(double)offset, s2 & 0xFFFF, s1 & 0xFFFF);
}
i = hash_table[SUM2HASH2(s1,s2)];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment