From 6644ae54dab58fd9eee27394cd88621a036846bb Mon Sep 17 00:00:00 2001 From: Faye Amacker <33205765+fxamacker@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:12:10 -0500 Subject: [PATCH] Lint circlehash64.go Resolve a coding style issue reported by gocritic. --- circlehash64.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circlehash64.go b/circlehash64.go index eabdc06..64f7a15 100644 --- a/circlehash64.go +++ b/circlehash64.go @@ -139,7 +139,7 @@ func circle64f(p unsafe.Pointer, seed uint64, dlen uint64) uint64 { p = add(p, 64) } - currentState = currentState ^ duplicatedState + currentState ^= duplicatedState } // We have at most 64 bytes to process.