Skip to content

Commit

Permalink
Fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
flanglet committed Jun 21, 2024
1 parent 155dc16 commit 176c727
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions v2/transform/BWT.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,13 +245,12 @@ func (this *BWT) inverseMergeTPSI(src, dst []byte, count int) (uint, uint, error

for i := range src {
ptr := data[t]
dst[i] = byte(ptr)
t = ptr >> 8

if ptr < 0 {
break
}

dst[i] = byte(ptr)
t = ptr >> 8
}
} else {
ckSize := count >> 3
Expand Down

0 comments on commit 176c727

Please sign in to comment.