diff --git a/src/runtime/debug/heapdump_test.go b/src/runtime/debug/heapdump_test.go index cf01f520152..cb2f2f06798 100644 --- a/src/runtime/debug/heapdump_test.go +++ b/src/runtime/debug/heapdump_test.go @@ -32,13 +32,12 @@ func TestWriteHeapDumpNonempty(t *testing.T) { } } - type Obj struct { - x, y int + x, y int } func objfin(x *Obj) { - println("finalized", x) + println("finalized", x) } func TestWriteHeapDumpFinalizers(t *testing.T) { diff --git a/src/runtime/malloc2.go b/src/runtime/malloc2.go index cd8dc0ad8b1..c975f845bc5 100644 --- a/src/runtime/malloc2.go +++ b/src/runtime/malloc2.go @@ -477,7 +477,7 @@ type finblock struct { next *finblock cnt int32 _ int32 - fin [(_FinBlockSize-2*ptrSize-2*4)/unsafe.Sizeof(finalizer{})]finalizer + fin [(_FinBlockSize - 2*ptrSize - 2*4) / unsafe.Sizeof(finalizer{})]finalizer } // Information from the compiler about the layout of stack frames.