summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2014-10-31 10:20:36 -0700
committerIan Lance Taylor <iant@golang.org>2014-10-31 10:20:36 -0700
commit8985c091e4a83eef27ed2a474e1dd34eae43db3a (patch)
tree71c54d030da5586e8581be09bcddd9443f8363e4
parent9dc1cce38db0229e97c1ee8d9929f0457f1af385 (diff)
downloadgo-git-8985c091e4a83eef27ed2a474e1dd34eae43db3a.tar.gz
net/http: add missing newline in list of leaked goroutines
LGTM=bradfitz R=bradfitz CC=golang-codereviews https://golang.org/cl/168860044
-rw-r--r--src/net/http/main_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/http/main_test.go b/src/net/http/main_test.go
index 9f1dfc3727..b8c71fd19f 100644
--- a/src/net/http/main_test.go
+++ b/src/net/http/main_test.go
@@ -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
}