Commit 8985c091 authored by Ian Lance Taylor's avatar Ian Lance Taylor

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

LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://golang.org/cl/168860044
parent 9dc1cce3
...@@ -70,7 +70,7 @@ func goroutineLeaked() bool { ...@@ -70,7 +70,7 @@ func goroutineLeaked() bool {
} }
fmt.Fprintf(os.Stderr, "Too many goroutines running after net/http test(s).\n") fmt.Fprintf(os.Stderr, "Too many goroutines running after net/http test(s).\n")
for stack, count := range stackCount { 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 return true
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment