1
0
mirror of https://github.com/golang/go synced 2024-10-01 09:28:37 -06:00

runtime: gofmt

Fixes #9339

Change-Id: I22faf2593cb73f42612c2c2bfe38de001fb2746b
Reviewed-on: https://go-review.googlesource.com/1630
Reviewed-by: Andrew Gerrand <adg@golang.org>
This commit is contained in:
Brad Fitzpatrick 2014-12-16 17:14:25 +11:00
parent 5308c6d932
commit fccd942803
2 changed files with 3 additions and 4 deletions

View File

@ -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) {

View File

@ -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.