aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/lfstack.go
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2015-11-11 20:49:37 -0800
committerMatthew Dempsky <mdempsky@google.com>2015-11-12 05:19:58 +0000
commit3073797c37e168f3671880c683a228f9f8f942e3 (patch)
treed41ae45d7b49d4596b5d832aff3acbd1f1c7aef1 /src/runtime/lfstack.go
parent58bc561d1a94b789eabefba278fb6587b391f03b (diff)
downloadgo-3073797c37e168f3671880c683a228f9f8f942e3.tar.xz
runtime: fix vet warning about println
lfstack.go:19: println call ends with newline Change-Id: I2a903eef80a5300e9014999c2f0bc5d40ed5c735 Reviewed-on: https://go-review.googlesource.com/16836 Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'src/runtime/lfstack.go')
-rw-r--r--src/runtime/lfstack.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/lfstack.go b/src/runtime/lfstack.go
index de3999a5fb..ea640eb12f 100644
--- a/src/runtime/lfstack.go
+++ b/src/runtime/lfstack.go
@@ -16,7 +16,7 @@ func lfstackpush(head *uint64, node *lfnode) {
node.pushcnt++
new := lfstackPack(node, node.pushcnt)
if node1, _ := lfstackUnpack(new); node1 != node {
- println("runtime: lfstackpush invalid packing: node=", node, " cnt=", hex(node.pushcnt), " packed=", hex(new), " -> node=", node1, "\n")
+ print("runtime: lfstackpush invalid packing: node=", node, " cnt=", hex(node.pushcnt), " packed=", hex(new), " -> node=", node1, "\n")
throw("lfstackpush")
}
for {