Commit a9824f17 authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

runtime: fix debug output

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/7312101
parent d8440016
......@@ -90,7 +90,7 @@ runtime·stackalloc(uint32 n)
// will be a single size, the minimum (right now, 5k).
if(n == FixedStack || m->mallocing || m->gcing) {
if(n != FixedStack) {
runtime·printf("stackalloc: in malloc, size=%d want %d", FixedStack, n);
runtime·printf("stackalloc: in malloc, size=%d want %d\n", FixedStack, n);
runtime·throw("stackalloc");
}
if(m->stackcachecnt == 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment