Fix some clippy warnings (#536)

This commit is contained in:
Marcin Mielniczuk
2019-11-10 22:50:19 +01:00
committed by Dan Gohman
parent ef1cbfdaa8
commit 3206461502
6 changed files with 16 additions and 13 deletions

View File

@@ -15,12 +15,12 @@ enum PendingFdEntry {
impl std::fmt::Debug for PendingFdEntry {
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
PendingFdEntry::Thunk(f) => write!(
Self::Thunk(f) => write!(
fmt,
"PendingFdEntry::Thunk({:p})",
f as *const fn() -> Result<FdEntry>
),
PendingFdEntry::File(f) => write!(fmt, "PendingFdEntry::File({:?})", f),
Self::File(f) => write!(fmt, "PendingFdEntry::File({:?})", f),
}
}
}
@@ -46,8 +46,8 @@ impl From<OsString> for PendingCString {
impl PendingCString {
fn into_string(self) -> Result<String> {
match self {
PendingCString::Bytes(v) => String::from_utf8(v).map_err(|_| Error::EILSEQ),
PendingCString::OsString(s) => s.into_string().map_err(|_| Error::EILSEQ),
Self::Bytes(v) => String::from_utf8(v).map_err(|_| Error::EILSEQ),
Self::OsString(s) => s.into_string().map_err(|_| Error::EILSEQ),
}
}

View File

@@ -2,7 +2,8 @@
// missing_docs,
trivial_numeric_casts,
unused_extern_crates,
unstable_features
unstable_features,
clippy::use_self
)]
#![warn(unused_import_braces)]
#![cfg_attr(feature = "clippy", plugin(clippy(conf_file = "../clippy.toml")))]