mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-22 07:57:39 +00:00
Address clippy warnings
This commit is contained in:
parent
715284b70d
commit
987e5f5413
@ -617,7 +617,7 @@ pub fn cpio_commands(argc: i32, argv: *const *const c_char) -> bool {
|
||||
return Err(log_err!("invalid arguments"));
|
||||
}
|
||||
cpio.extract(
|
||||
paths.get(0).map(|x| x.as_str()),
|
||||
paths.first().map(|x| x.as_str()),
|
||||
paths.get(1).map(|x| x.as_str()),
|
||||
)?;
|
||||
}
|
||||
|
@ -140,7 +140,7 @@ fn do_extract_boot_from_payload(
|
||||
|
||||
let out_offset = operation
|
||||
.dst_extents
|
||||
.get(0)
|
||||
.first()
|
||||
.ok_or_else(|| bad_payload!("dst extents not found"))?
|
||||
.start_block
|
||||
.ok_or_else(|| bad_payload!("start block not found"))?
|
||||
|
Loading…
x
Reference in New Issue
Block a user