From: Ian Lance Taylor Date: Fri, 31 Oct 2014 17:20:36 +0000 (-0700) Subject: net/http: add missing newline in list of leaked goroutines X-Git-Tag: go1.4rc1~56 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8985c091e4a83eef27ed2a474e1dd34eae43db3a;p=gostls13.git net/http: add missing newline in list of leaked goroutines LGTM=bradfitz R=bradfitz CC=golang-codereviews https://golang.org/cl/168860044 --- 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 }