summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/db.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db.erl b/src/db.erl
index 04c9bd7..d90282f 100644
--- a/src/db.erl
+++ b/src/db.erl
@@ -130,8 +130,8 @@ handle_call({get_by_indices, {Start, End, _Sorted}}, _From, State) ->
R = lists:map(fun (Index) ->
LeafHash = leafhash_for_index(Index),
Entry = entry_for_leafhash(LeafHash),
- {Index, LeafHash, Entry}
- end, lists:seq(Start, End)),
+ {Index, LeafHash, Entry}
+ end, lists:seq(Start, End)),
{reply, R, State};
handle_call({get_by_index, Index}, _From, State) ->