Skip to content

Commit

Permalink
Merge pull request ethereum#19992 from karalabe/fix-blake2b-386-2
Browse files Browse the repository at this point in the history
crypto/blake2b: fix 386, round 2
  • Loading branch information
karalabe authored Aug 22, 2019
2 parents 5b2c47a + 8e391ce commit ac23073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/blake2b/blake2b_ref.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

0 comments on commit ac23073

Please sign in to comment.