Fix type-o

This commit is contained in:
Gregory Burd 2012-07-19 11:47:18 -04:00
parent b92e9cb814
commit 5b7a0e159c

View file

@ -274,7 +274,7 @@ lookup(#index{file=File, root=Node, bloom=Bloom}, Key) ->
not_found -> not_found ->
not_found; not_found;
{ok, {Value, TStamp}} ?ASSERT_WHEN(Value =:= ?TOMBSTONE; is_binary(Value)) -> {ok, {Value, TStamp}} ?ASSERT_WHEN(Value =:= ?TOMBSTONE; is_binary(Value)) ->
case hanoidb_utils:has_expired(TStamp) of case hanoidb_util:has_expired(TStamp) of
true -> not_found; true -> not_found;
false -> {ok, Value} false -> {ok, Value}
end; end;