Fix a bug related to the change in 5aab9df
diff --git a/src/ets_lru.erl b/src/ets_lru.erl
index 5880bd5..dc68fb8 100644
--- a/src/ets_lru.erl
+++ b/src/ets_lru.erl
@@ -114,8 +114,8 @@
 
 handle_call({lookup, Key}, _From, St) ->
     Reply = case ets:lookup(St#st.objects, Key) of
-        [#entry{val=Val}] ->
-            accessed(St, Key),
+        [#entry{val=Val} | _] ->
+            accessed(Key, St),
             {ok, Val};
         [] ->
             not_found