From: Alan Donovan Date: Tue, 4 Sep 2012 20:35:05 +0000 (-0400) Subject: runtime: fix typo in openbsd-only symbol name. X-Git-Tag: go1.1rc2~2528 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ee911c426574d5421d7b227eda07b7b62f9dbfdf;p=gostls13.git runtime: fix typo in openbsd-only symbol name. R=golang-dev, minux.ma, rsc CC=golang-dev https://golang.org/cl/6490076 --- diff --git a/src/pkg/runtime/thread_openbsd.c b/src/pkg/runtime/thread_openbsd.c index c55f25278f..f479e2c3e9 100644 --- a/src/pkg/runtime/thread_openbsd.c +++ b/src/pkg/runtime/thread_openbsd.c @@ -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); }