]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix typo in openbsd-only symbol name.
authorAlan Donovan <adonovan@google.com>
Tue, 4 Sep 2012 20:35:05 +0000 (16:35 -0400)
committerAlan Donovan <adonovan@google.com>
Tue, 4 Sep 2012 20:35:05 +0000 (16:35 -0400)
R=golang-dev, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/6490076

src/pkg/runtime/thread_openbsd.c

index c55f25278f03a444b7edba8e8572dd58ddababd3..f479e2c3e98fd2bc65fd49e922e989b0692e0108 100644 (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);
 }