diff options
Diffstat (limited to 'src/runtime/mfixalloc.go')
| -rw-r--r-- | src/runtime/mfixalloc.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/mfixalloc.go b/src/runtime/mfixalloc.go index b66a17e41c..3934a9e439 100644 --- a/src/runtime/mfixalloc.go +++ b/src/runtime/mfixalloc.go @@ -26,7 +26,7 @@ func fixAlloc_Init(f *fixalloc, size uintptr, first func(unsafe.Pointer, unsafe. func fixAlloc_Alloc(f *fixalloc) unsafe.Pointer { if f.size == 0 { print("runtime: use of FixAlloc_Alloc before FixAlloc_Init\n") - gothrow("runtime: internal error") + throw("runtime: internal error") } if f.list != nil { |
