1
0
mirror of https://github.com/golang/go synced 2024-11-19 00:54:42 -07:00

net/http: add missing newline in list of leaked goroutines

LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://golang.org/cl/168860044
This commit is contained in:
Ian Lance Taylor 2014-10-31 10:20:36 -07:00
parent 9dc1cce38d
commit 8985c091e4

View File

@ -70,7 +70,7 @@ func goroutineLeaked() bool {
}
fmt.Fprintf(os.Stderr, "Too many goroutines running after net/http test(s).\n")
for stack, count := range stackCount {
fmt.Fprintf(os.Stderr, "%d instances of:\n%s", count, stack)
fmt.Fprintf(os.Stderr, "%d instances of:\n%s\n", count, stack)
}
return true
}