From: Shenghou Ma Date: Fri, 20 Dec 2013 02:12:18 +0000 (-0500) Subject: runtime: fix build for OpenBSD X-Git-Tag: go1.3beta1~1132 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=eb7ed0d6264b76a59e564803aed16fc4ccacd4d9;p=gostls13.git runtime: fix build for OpenBSD R=golang-dev CC=golang-dev https://golang.org/cl/38030045 --- diff --git a/src/pkg/runtime/os_openbsd.c b/src/pkg/runtime/os_openbsd.c index 6de4b8a718..45f5040c9f 100644 --- a/src/pkg/runtime/os_openbsd.c +++ b/src/pkg/runtime/os_openbsd.c @@ -304,5 +304,5 @@ runtime·signalstack(byte *p, int32 n) void runtime·unblocksignals(void) { - runtime·sigprocmask(SIG_SETMASK, &sigset_none); + runtime·sigprocmask(SIG_SETMASK, sigset_none); }