From bb386219f4d0eac7681bbe7f37a9e687109863ee Mon Sep 17 00:00:00 2001 From: Fazal Majid Date: Mon, 7 Dec 2015 17:41:26 -0800 Subject: [PATCH] ran go fmt on mmap_solaris.go #4787 --- tsdb/engine/tsm1/mmap_solaris.go | 1 - 1 file changed, 1 deletion(-) diff --git a/tsdb/engine/tsm1/mmap_solaris.go b/tsdb/engine/tsm1/mmap_solaris.go index fbada23ffb..2f43cb05cb 100644 --- a/tsdb/engine/tsm1/mmap_solaris.go +++ b/tsdb/engine/tsm1/mmap_solaris.go @@ -9,7 +9,6 @@ import ( "golang.org/x/sys/unix" ) - func mmap(f *os.File, offset int64, length int) ([]byte, error) { mmap, err := unix.Mmap(int(f.Fd()), 0, length, syscall.PROT_READ, syscall.MAP_SHARED) if err != nil {