From dc99281295dc771b880c51656c1d416f99d83f95 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Sat, 8 Jun 2024 00:36:30 +0200 Subject: [PATCH] wip --- lib/logstorage/bloomfilter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logstorage/bloomfilter.go b/lib/logstorage/bloomfilter.go index 312158f46..f1ef86918 100644 --- a/lib/logstorage/bloomfilter.go +++ b/lib/logstorage/bloomfilter.go @@ -33,7 +33,7 @@ type bloomFilter struct { func (bf *bloomFilter) reset() { clear(bf.bits) - bf.bits = bits[:0] + bf.bits = bf.bits[:0] } // marshal appends marshaled bf to dst and returns the result.