pass gofmt

pull/18/head
Anthony Romano 2017-08-10 22:07:12 -07:00
parent 32c9f9e929
commit d3d8bbd794
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ func (f *freelist) read(p *page) {
if count == 0 {
f.ids = nil
} else {
ids := ((*[maxAllocSize]pgid)(unsafe.Pointer(&p.ptr)))[idx:idx+count]
ids := ((*[maxAllocSize]pgid)(unsafe.Pointer(&p.ptr)))[idx : idx+count]
f.ids = make([]pgid, len(ids))
copy(f.ids, ids)