From 0b7ad4e2fde982b04331c9493ff6ea84669b7b15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Sat, 16 Jan 2016 19:33:20 +0100 Subject: [PATCH] Fix inconsistency --- libimagstore/src/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs index 3b44c2c1..a7efc4ee 100644 --- a/libimagstore/src/store.rs +++ b/libimagstore/src/store.rs @@ -37,7 +37,7 @@ impl Store { fn update<'a>(&'a self, entry: FileLockEntry<'a>) -> Result<()> { unimplemented!(); } - fn retrieve_copy(&self, id : String) -> Result { + fn retrieve_copy(&self, path: PathBuf) -> Result { unimplemented!(); } fn delete(&self, path: PathBuf) -> Result<()> {