crypto/blake2b: fix 386, round 2

This commit is contained in:
Péter Szilágyi 2019-08-22 12:24:11 +03:00
parent 5b2c47a575
commit 8e391cec43
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D

@ -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)
}