Fix unlocked Frame.fragments accessor.

This commit is contained in:
Ben Johnson 2016-11-04 09:32:58 -06:00
parent 9b965042ef
commit d42ea03b76
No known key found for this signature in database
GPG key ID: 81741CD251883081

View file

@ -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.