From dc26ad7125b152f127a4184d9e65f9412a381cf9 Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Tue, 20 Jun 2023 15:09:16 -0700 Subject: [PATCH] Address clippy warnings --- native/src/boot/cpio.rs | 21 +++++++++------------ native/src/boot/payload.rs | 2 +- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/native/src/boot/cpio.rs b/native/src/boot/cpio.rs index 8fff1fd16..1ea98804f 100644 --- a/native/src/boot/cpio.rs +++ b/native/src/boot/cpio.rs @@ -1,4 +1,3 @@ -use argh::{EarlyExit, FromArgs}; use std::collections::BTreeMap; use std::ffi::CStr; use std::fmt::{Display, Formatter}; @@ -13,6 +12,7 @@ use std::slice; use anyhow::{anyhow, Context}; use size::{Base, Size, Style}; +use argh::{EarlyExit, FromArgs}; use base::libc::{ c_char, dev_t, gid_t, major, makedev, minor, mknod, mode_t, uid_t, S_IFBLK, S_IFCHR, S_IFDIR, S_IFLNK, S_IFMT, S_IFREG, S_IRGRP, S_IROTH, S_IRUSR, S_IWGRP, S_IWOTH, S_IWUSR, S_IXGRP, @@ -308,7 +308,7 @@ impl Cpio { pub(crate) fn rm(&mut self, path: &str, recursive: bool) { let path = norm_path(path); - if let Some(_) = self.entries.remove(&path) { + if self.entries.remove(&path).is_some() { eprintln!("Removed entry [{}]", path); } if recursive { @@ -462,14 +462,11 @@ impl Cpio { } fn ls(&self, path: &str, recursive: bool) { - let path = match norm_path(path) { - path => { - if path.is_empty() { - path - } else { - "/".to_string() + path.as_str() - } - } + let path = norm_path(path); + let path = if path.is_empty() { + path + } else { + "/".to_string() + path.as_str() }; for (name, entry) in &self.entries { let p = "/".to_string() + name.as_str(); @@ -547,7 +544,7 @@ pub fn cpio_commands(argc: i32, argv: *const *const c_char) -> bool { continue; } let mut cli = match CpioCli::from_args( - &["magiskboot", "cpio", &*file], + &["magiskboot", "cpio", file], cmd.split(' ') .filter(|x| !x.is_empty()) .collect::>() @@ -582,7 +579,7 @@ pub fn cpio_commands(argc: i32, argv: *const *const c_char) -> bool { CpioCommands::Link(Link { src, dst }) => cpio.ln(src, dst), CpioCommands::Add(Add { mode, path, file }) => cpio.add(mode, path, file)?, CpioCommands::Extract(Extract { paths }) => { - if paths.len() != 0 && paths.len() != 2 { + if !paths.is_empty() && paths.len() != 2 { return Err(anyhow!("invalid arguments")); } cpio.extract( diff --git a/native/src/boot/payload.rs b/native/src/boot/payload.rs index 80866cbc0..ede344b34 100644 --- a/native/src/boot/payload.rs +++ b/native/src/boot/payload.rs @@ -93,7 +93,7 @@ fn do_extract_boot_from_payload( Some(name) => manifest .partitions .iter() - .find(|p| p.partition_name.as_str() == &*name) + .find(|p| p.partition_name.as_str() == name) .ok_or(anyhow!("partition '{name}' not found"))?, };