From 609e28aa00c91beebcae14cfbb067c42c20d98cc Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Thu, 24 Aug 2023 17:55:38 -0700 Subject: [PATCH] sequential: format via gofumpt This fixes the following CI error: > sequential_windows.go:114: File is not `gofumpt`-ed (gofumpt) Signed-off-by: Kir Kolyshkin --- sequential/sequential_windows.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sequential/sequential_windows.go b/sequential/sequential_windows.go index f489d30b..3500ecc6 100644 --- a/sequential/sequential_windows.go +++ b/sequential/sequential_windows.go @@ -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()))