Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cmd/cgo/internal/testout/out_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"bufio"
"bytes"
"fmt"
"internal/testenv"
"internal/goarch"
"internal/testenv"
"os"
"path/filepath"
"regexp"
Expand Down
4 changes: 2 additions & 2 deletions src/runtime/os_linux_settime32.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/testing/fstest/testfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down