From 8e391cec43efd5c43b13ce1aee5f388aee499611 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Thu, 22 Aug 2019 12:24:11 +0300 Subject: [PATCH] crypto/blake2b: fix 386, round 2 --- crypto/blake2b/blake2b_ref.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/blake2b/blake2b_ref.go b/crypto/blake2b/blake2b_ref.go index 874c2d97a1..9d0ade473a 100644 --- a/crypto/blake2b/blake2b_ref.go +++ b/crypto/blake2b/blake2b_ref.go @@ -6,6 +6,6 @@ package blake2b -func f(h *[8]uint64, m [16]uint64, c0, c1 uint64, flag uint64, rounds int) { +func f(h *[8]uint64, m *[16]uint64, c0, c1 uint64, flag uint64, rounds uint64) { fGeneric(h, m, c0, c1, flag, rounds) }