From 79f585def9ccacb8ea2548d84404b652c18a9d55 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 3 May 2016 16:18:53 +0200 Subject: [PATCH] Fix libimagentrylist::listers::path --- libimagentrylist/src/listers/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libimagentrylist/src/listers/path.rs b/libimagentrylist/src/listers/path.rs index 0f1deac5..e3602770 100644 --- a/libimagentrylist/src/listers/path.rs +++ b/libimagentrylist/src/listers/path.rs @@ -32,7 +32,7 @@ impl Lister for PathLister { if self.absolute { pb.canonicalize().map_err(|e| LE::new(LEK::FormatError, Some(Box::new(e)))) } else { - Ok(pb) + Ok(pb.into()) } }) .and_then(|pb| {