1
0
mirror of https://github.com/golang/go synced 2024-11-24 23:07:56 -07:00

runtime: fix typo in openbsd-only symbol name.

R=golang-dev, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/6490076
This commit is contained in:
Alan Donovan 2012-09-04 16:35:05 -04:00
parent 2836c63459
commit ee911c4265

View File

@ -240,5 +240,5 @@ runtime·badsignal(int32 sig)
return; // Ignore SIGPROFs intended for a non-Go thread.
}
runtime·write(2, badsignal, sizeof badsignal - 1);
runtime.exit(1)
runtime·exit(1);
}