From 19eed5d76f3e62b44a571dbfbdd2661edb52498c Mon Sep 17 00:00:00 2001 From: web3-bot Date: Fri, 10 Dec 2021 11:50:47 +0000 Subject: [PATCH] run gofmt -s --- build.go | 1 + build_static.go | 1 + init_posix.go | 1 + init_windows.go | 1 + 4 files changed, 4 insertions(+) diff --git a/build.go b/build.go index d3f19d8..990fbb4 100644 --- a/build.go +++ b/build.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build !openssl_static // +build !openssl_static package openssl diff --git a/build_static.go b/build_static.go index 69fad0a..dde5446 100644 --- a/build_static.go +++ b/build_static.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build openssl_static // +build openssl_static package openssl diff --git a/init_posix.go b/init_posix.go index 605a24b..f518d2f 100644 --- a/init_posix.go +++ b/init_posix.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build (linux || darwin || solaris || freebsd || openbsd) && !windows // +build linux darwin solaris freebsd openbsd // +build !windows diff --git a/init_windows.go b/init_windows.go index 051133c..7356b6e 100644 --- a/init_windows.go +++ b/init_windows.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build windows // +build windows package openssl