aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/stack1.go
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2015-02-03 08:35:38 -0500
committerAustin Clements <austin@google.com>2015-02-03 14:37:08 +0000
commitc901bd01c131b6a3d1bbc7dde9de02cb7ce2544a (patch)
treee785ccdfbd312837c79a898a0ed4713dfccf314c /src/runtime/stack1.go
parent826fa06189f9cb86871aac66934b45a859e3b3a6 (diff)
downloadgo-c901bd01c131b6a3d1bbc7dde9de02cb7ce2544a.tar.xz
runtime: add missing \n to error message
Change-Id: Ife7d30f4191e6a8aaf3a442340d277989f7a062d Reviewed-on: https://go-review.googlesource.com/3780 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/stack1.go')
-rw-r--r--src/runtime/stack1.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/stack1.go b/src/runtime/stack1.go
index 1e9ccfebb5..6a1f6aee92 100644
--- a/src/runtime/stack1.go
+++ b/src/runtime/stack1.go
@@ -468,7 +468,7 @@ func adjustframe(frame *stkframe, arg unsafe.Pointer) bool {
// Adjust saved base pointer if there is one.
if thechar == '6' && frame.argp-frame.varp == 2*ptrSize {
if !framepointer_enabled {
- print("runtime: found space for saved base pointer, but no framepointer experiment")
+ print("runtime: found space for saved base pointer, but no framepointer experiment\n")
throw("bad frame layout")
}
if stackDebug >= 3 {