From f203b80eb882761f734eac04ccbd25ff3b02c147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Wed, 19 May 2021 12:28:49 -0300 Subject: [PATCH] Fixing ouch OofError convertion --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index 83657e1..a64ff91 100644 --- a/src/error.rs +++ b/src/error.rs @@ -120,7 +120,7 @@ impl From for Error { } } -impl<'t> From> for Error { +impl From for Error { fn from(err: oof::OofError) -> Self { // To avoid entering a lifetime hell, we'll just print the Oof error here // and skip saving it into a variant of Self