]> Cypherpunks repositories - gostls13.git/commitdiff
net/http: add missing newline in list of leaked goroutines
authorIan Lance Taylor <iant@golang.org>
Fri, 31 Oct 2014 17:20:36 +0000 (10:20 -0700)
committerIan Lance Taylor <iant@golang.org>
Fri, 31 Oct 2014 17:20:36 +0000 (10:20 -0700)
LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://golang.org/cl/168860044

src/net/http/main_test.go

index 9f1dfc3727214327c8ee762eb1c0ece77aa7223a..b8c71fd19fd21285d4ebb3721f58f1062433834b 100644 (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
 }