commit | 00fa9bd2c6581a70dc50bc30f4eeaf38950e4af2 | [log] [tgz] |
---|---|---|
author | Chris Wailes <chriswailes@google.com> | Thu Sep 05 13:33:08 2024 -0700 |
committer | Chris Wailes <chriswailes@google.com> | Thu Sep 05 13:33:43 2024 -0700 |
tree | 1c928a6f9cda941b7d8cea85944d63596480dd83 | |
parent | 255cde6f04bdd77103b62f09e6b9958446aa828f [diff] [blame] |
Update Android for Rust 1.81.0 Test: m rust Bug: 364333811 Change-Id: I3722bcc777b2dc13c9b7456e9a394ac6dc8e1823
diff --git a/keystore2/src/legacy_blob.rs b/keystore2/src/legacy_blob.rs index c27a050..e05e686 100644 --- a/keystore2/src/legacy_blob.rs +++ b/keystore2/src/legacy_blob.rs
@@ -961,7 +961,7 @@ fn make_user_path_name(&self, user_id: u32) -> PathBuf { let mut path = self.path.clone(); - path.push(&format!("user_{}", user_id)); + path.push(format!("user_{}", user_id)); path }