]> Cypherpunks repositories - gostls13.git/commitdiff
all: gofmt -w
authorJes Cok <xigua67damn@gmail.com>
Tue, 21 Oct 2025 17:25:19 +0000 (17:25 +0000)
committerGopher Robot <gobot@golang.org>
Tue, 21 Oct 2025 20:14:55 +0000 (13:14 -0700)
Change-Id: Iae74ac910d9db035bb2b726b2128aac09f5b7aae
GitHub-Last-Rev: 7aab5fa8e76df87766e903d7a689ed257d986558
GitHub-Pull-Request: golang/go#75993
Reviewed-on: https://go-review.googlesource.com/c/go/+/713540
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: David Chase <drchase@google.com>
src/cmd/cgo/internal/testout/out_test.go
src/runtime/os_linux_settime32.go
src/testing/fstest/testfs_test.go

index 81dfa365871372c0f7db8a2a2221c8eb4ba83943..e8ea5092a3562b2fe0d9b26298c989c254706a25 100644 (file)
@@ -8,8 +8,8 @@ import (
        "bufio"
        "bytes"
        "fmt"
-       "internal/testenv"
        "internal/goarch"
+       "internal/testenv"
        "os"
        "path/filepath"
        "regexp"
index 6df7f21dc9ce71ea60ec43545e0ad9a60caa3d68..30f95455bfe2ad23acfb2627e1f4802b6ee95760 100644 (file)
@@ -27,8 +27,8 @@ func timer_settime(timerid int32, flags int32, new, old *itimerspec) int32 {
                timer32bitOnly.Store(true)
        }
 
-       var newts,oldts itimerspec32
-       var new32,old32 *itimerspec32
+       var newts, oldts itimerspec32
+       var new32, old32 *itimerspec32
 
        if new != nil {
                newts.it_interval.setNsec(new.it_interval.tv_sec*1e9 + new.it_interval.tv_nsec)
index e3d7f1ab44d7b76a278473f4cd1c1b73f9978b6c..a0561b6dfc661c97851d2654b9a4b3dc3aa81a81 100644 (file)
@@ -105,7 +105,7 @@ func TestTestFSWrappedErrors(t *testing.T) {
 
        // TestFS is expected to return a list of errors.
        // Enforce that the list can be extracted for browsing.
-       type wrapper interface{
+       type wrapper interface {
                error
                Unwrap() []error
        }