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>
This commit is contained in:
Austin Clements 2015-02-03 08:35:38 -05:00
parent 826fa06189
commit c901bd01c1

View 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 {