mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
vlib.crypto+other: fix mut args
This commit is contained in:
parent
818c4a14e5
commit
511a3d3901
15 changed files with 53 additions and 43 deletions
|
@ -17,7 +17,8 @@ const (
|
|||
_K3 = 0xCA62C1D6
|
||||
)
|
||||
|
||||
fn block_generic(dig mut Digest, p []byte) {
|
||||
fn block_generic(dig mut Digest, p_ []byte) {
|
||||
mut p := p_
|
||||
mut w := [u32(0); 16]
|
||||
mut h0 := dig.h[0]
|
||||
mut h1 := dig.h[1]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue