From 3f3c5cf23a6546a6029b7bea0833e9e6fb44d348 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Fri, 4 Nov 2016 09:32:58 -0600 Subject: [PATCH] Fix unlocked Frame.fragments accessor. --- index.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.go b/index.go index af57aca1e..2f640c348 100644 --- a/index.go +++ b/index.go @@ -252,7 +252,7 @@ func (i *Index) Fragment(db, frame string, slice uint64) *Fragment { if f == nil { return nil } - return f.fragment(slice) + return f.Fragment(slice) } // CreateFragmentIfNotExists returns the fragment for a database, frame & slice.