diff options
Diffstat (limited to 'src/runtime/os1_plan9.go')
| -rw-r--r-- | src/runtime/os1_plan9.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/os1_plan9.go b/src/runtime/os1_plan9.go index aa9d67fe1e..63bba7c34c 100644 --- a/src/runtime/os1_plan9.go +++ b/src/runtime/os1_plan9.go @@ -194,7 +194,7 @@ func newosproc(mp *m, stk unsafe.Pointer) { } pid := rfork(_RFPROC | _RFMEM | _RFNOWAIT) if pid < 0 { - gothrow("newosproc: rfork failed") + throw("newosproc: rfork failed") } if pid == 0 { tstart_plan9(mp) |
