From 3d13a393d853bf8bcd3b1fa58dd9d000f2478742 Mon Sep 17 00:00:00 2001 From: Nadja Reitzenstein Date: Wed, 7 Dec 2022 16:13:43 +0100 Subject: [PATCH] fix build --- bffhd/db/index.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bffhd/db/index.rs b/bffhd/db/index.rs index 1865f23..d89fe57 100644 --- a/bffhd/db/index.rs +++ b/bffhd/db/index.rs @@ -29,6 +29,6 @@ impl, A: Adapter> Index { pub fn get( &self, txn: &T, lookup: I, ) -> Result, db::Error> { - self.db.get(txn, lookup) + self.db.get(txn, &lookup) } } \ No newline at end of file