]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: add missing \n to error message
authorAustin Clements <austin@google.com>
Tue, 3 Feb 2015 13:35:38 +0000 (08:35 -0500)
committerAustin Clements <austin@google.com>
Tue, 3 Feb 2015 14:37:08 +0000 (14:37 +0000)
Change-Id: Ife7d30f4191e6a8aaf3a442340d277989f7a062d
Reviewed-on: https://go-review.googlesource.com/3780
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/runtime/stack1.go

index 1e9ccfebb58a0e77c49a8a35d79e63d4e0f78a65..6a1f6aee92652b8039d4502c9544d701e761736d 100644 (file)
@@ -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 {