Skip to content

Commit 046290f

Browse files
committed
remove mut
Signed-off-by: Michael Lodder <redmike7@gmail.com>
1 parent a7f4026 commit 046290f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/keyring/windows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl DynKeyRing for WindowsOsKeyRing {
9191
let mut user_name = to_utf16_bytes(&self.username);
9292
let mut secret_cp = secret.to_vec();
9393

94-
let mut in_blob = CRYPT_INTEGER_BLOB {
94+
let in_blob = CRYPT_INTEGER_BLOB {
9595
cbData: secret.len() as u32,
9696
pbData: secret_cp.as_mut_ptr(),
9797
};

0 commit comments

Comments
 (0)