Skip to content

Commit

Permalink
sequential: format via gofumpt
Browse files Browse the repository at this point in the history
This fixes the following CI error:

> sequential_windows.go:114: File is not `gofumpt`-ed (gofumpt)

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
  • Loading branch information
kolyshkin committed Aug 25, 2023
1 parent a317ea2 commit 51476d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sequential/sequential_windows.go
Expand Up @@ -111,8 +111,10 @@ func openSequential(path string, mode int) (fd windows.Handle, err error) {
}

// Helpers for CreateTemp
var rand uint32
var randmu sync.Mutex
var (
rand uint32
randmu sync.Mutex
)

func reseed() uint32 {
return uint32(time.Now().UnixNano() + int64(os.Getpid()))
Expand Down

0 comments on commit 51476d8

Please sign in to comment.