We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b48a085 commit 8e71a96Copy full SHA for 8e71a96
aml/src/value.rs
@@ -286,7 +286,7 @@ impl AmlValue {
286
let bytes = bytes.lock();
287
let bytes = if bytes.len() > 8 { &bytes[0..8] } else { &bytes[..] };
288
289
- Ok(bytes.iter().rev().fold(0: u64, |mut i, &popped| {
+ Ok(bytes.iter().rev().fold(0u64, |mut i, &popped| {
290
i <<= 8;
291
i += popped as u64;
292
i
0 commit comments