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
1 changed files with 1 additions and 1 deletions

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
}