all: run 'gofmt -w'

Change-Id: Ieb240ad85dc4d5b268c8549aba144aee18164a38
This commit is contained in:
Jes Cok 2025-02-22 20:20:07 +08:00
parent f062d7b10b
commit 369ada24ff
3 changed files with 13 additions and 13 deletions

View File

@ -44,6 +44,6 @@ type InterfaceMulticastAddrMessage struct {
// Implement the Message interface.
func (InterfaceMessage) message() {}
func (InterfaceAddrMessage) message() {}
func (InterfaceMessage) message() {}
func (InterfaceAddrMessage) message() {}
func (InterfaceMulticastAddrMessage) message() {}

View File

@ -802,7 +802,7 @@ func os_checkClonePidfd() error {
for {
const _P_PIDFD = 3
_, _, errno = Syscall6(SYS_WAITID, _P_PIDFD, uintptr(pidfd), 0, WEXITED | WCLONE, 0, 0)
_, _, errno = Syscall6(SYS_WAITID, _P_PIDFD, uintptr(pidfd), 0, WEXITED|WCLONE, 0, 0)
if errno != EINTR {
break
}

View File

@ -72,11 +72,11 @@ type T struct {
Str fmt.Stringer
Err error
// Pointers
PI *int
PS *string
PSI *[]int
NIL *int
UPI unsafe.Pointer
PI *int
PS *string
PSI *[]int
NIL *int
UPI unsafe.Pointer
EmptyUPI unsafe.Pointer
// Function (not method)
BinaryFunc func(string, string) string
@ -1508,8 +1508,8 @@ func TestBadFuncNames(t *testing.T) {
func TestIsTrue(t *testing.T) {
var nil_ptr *int
var nil_chan chan int
tests := []struct{
v any
tests := []struct {
v any
want bool
}{
{1, true},
@ -1522,12 +1522,12 @@ func TestIsTrue(t *testing.T) {
{complex64(0.0), false},
{true, true},
{false, false},
{[2]int{1,2}, true},
{[2]int{1, 2}, true},
{[0]int{}, false},
{[]byte("abc"), true},
{[]byte(""), false},
{map[string] int {"a": 1, "b": 2}, true},
{map[string] int {}, false},
{map[string]int{"a": 1, "b": 2}, true},
{map[string]int{}, false},
{make(chan int), true},
{nil_chan, false},
{new(int), true},