From: Austin Clements Date: Mon, 26 Sep 2016 17:41:39 +0000 (-0400) Subject: runtime: fix missing space in error message X-Git-Tag: go1.8beta1~1065 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7aab88a31e4b689374832ebd1a3927bcef6e3f79;p=gostls13.git runtime: fix missing space in error message Change-Id: I422708d50c3c727246e7991039877660ca034dc9 Reviewed-on: https://go-review.googlesource.com/30144 Run-TryBot: Austin Clements TryBot-Result: Gobot Gobot Reviewed-by: Rick Hudson --- diff --git a/src/runtime/mbitmap.go b/src/runtime/mbitmap.go index 0a8e749a08..91f34f7a03 100644 --- a/src/runtime/mbitmap.go +++ b/src/runtime/mbitmap.go @@ -421,7 +421,7 @@ func heapBitsForObject(p, refBase, refOff uintptr) (base uintptr, hbits heapBits } else { print(" to unused region of span") } - print("idx=", hex(idx), " span.base()=", hex(s.base()), " span.limit=", hex(s.limit), " span.state=", s.state, "\n") + print(" idx=", hex(idx), " span.base()=", hex(s.base()), " span.limit=", hex(s.limit), " span.state=", s.state, "\n") if refBase != 0 { print("runtime: found in object at *(", hex(refBase), "+", hex(refOff), ")\n") gcDumpObject("object", refBase, refOff)