Skip to content

Commit 8233c58

Browse files
authored
flate: Clean up histogram order (#1133)
Shouldn't have any practical impact
1 parent bcf0d12 commit 8233c58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flate/huffman_code.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,8 @@ func histogramSplit(b []byte, h []uint16) {
407407
for i, t := range x {
408408
v0 := &h[t]
409409
v1 := &h[y[i]]
410-
v3 := &h[w[i]]
411410
v2 := &h[z[i]]
411+
v3 := &h[w[i]]
412412
*v0++
413413
*v1++
414414
*v2++

0 commit comments

Comments
 (0)