summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorflip1995 <hello@philkrones.com>2019-08-27 10:39:25 +0200
committerMatthias Beyer <mail@beyermatthias.de>2019-08-28 18:18:40 +0200
commit98ccb41f7f7ada94dc704da77ff72842a3f17049 (patch)
tree89442ce9e8d139ca7bcb5f2d33dee078f4c1fe8b /bin
parent25e5936b08606d767d0316da8ea534b8b0bcde28 (diff)
[Auto] bin/core/diagnostics: Fix Clippy warnings
Signed-off-by: flip1995 <hello@philkrones.com> Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'bin')
-rw-r--r--bin/core/imag-diagnostics/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/core/imag-diagnostics/src/main.rs b/bin/core/imag-diagnostics/src/main.rs
index bef0b152..03d84d2a 100644
--- a/bin/core/imag-diagnostics/src/main.rs
+++ b/bin/core/imag-diagnostics/src/main.rs
@@ -147,7 +147,7 @@ fn main() {
.into_get_iter()
.map(|e| {
e.map_err_trace_exit_unwrap()
- .ok_or_else(|| Error::from(err_msg("Unable to get entry".to_owned())))
+ .ok_or_else(|| err_msg("Unable to get entry".to_owned()))
.map_err_trace_exit_unwrap()
})
.map(|e| {