summaryrefslogtreecommitdiff
path: root/src/algo
diff options
context:
space:
mode:
Diffstat (limited to 'src/algo')
-rw-r--r--src/algo/algo.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algo/algo.go b/src/algo/algo.go
index 2fe5c091..a627514c 100644
--- a/src/algo/algo.go
+++ b/src/algo/algo.go
@@ -371,7 +371,7 @@ func FuzzyMatchV2(caseSensitive bool, normalize bool, forward bool, input *util.
// The first occurrence of each character in the pattern
offset32, F := alloc32(offset32, slab, M)
// Rune array
- offset32, T := alloc32(offset32, slab, N)
+ _, T := alloc32(offset32, slab, N)
input.CopyRunes(T)
// Phase 2. Calculate bonus for each point
@@ -453,7 +453,7 @@ func FuzzyMatchV2(caseSensitive bool, normalize bool, forward bool, input *util.
copy(H, H0[f0:lastIdx+1])
// Possible length of consecutive chunk at each position.
- offset16, C := alloc16(offset16, slab, width*M)
+ _, C := alloc16(offset16, slab, width*M)
copy(C, C0[f0:lastIdx+1])
Fsub := F[1:]