mirror of
https://github.com/vlang/v.git
synced 2025-09-16 07:52:32 +03:00
fmt: fix alignment of struct init fields (#22025)
This commit is contained in:
parent
99da5726db
commit
c51d30bf53
671 changed files with 18817 additions and 18787 deletions
|
@ -53,9 +53,9 @@ pub fn compare_hash_and_password(password []u8, hashed_password []u8) ! {
|
|||
p.salt << `=`
|
||||
other_hash := bcrypt(password, p.cost, p.salt) or { return error('err') }
|
||||
mut other_p := Hashed{
|
||||
hash: other_hash
|
||||
salt: p.salt
|
||||
cost: p.cost
|
||||
hash: other_hash
|
||||
salt: p.salt
|
||||
cost: p.cost
|
||||
major: p.major
|
||||
minor: p.minor
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue