From b4aeb6cd0cedaa406e0990cc51ff75e0378af01e Mon Sep 17 00:00:00 2001 From: Kevin Krakauer Date: Thu, 3 Aug 2023 10:41:04 -0700 Subject: [PATCH] remove unnecessary build tags Fixes #9237 PiperOrigin-RevId: 553523044 --- pkg/tcpip/link/stopfd/stopfd.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/tcpip/link/stopfd/stopfd.go b/pkg/tcpip/link/stopfd/stopfd.go index cc46baa77..9cada9e26 100644 --- a/pkg/tcpip/link/stopfd/stopfd.go +++ b/pkg/tcpip/link/stopfd/stopfd.go @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build (linux && amd64) || (linux && arm64) -// +build linux,amd64 linux,arm64 +//go:build linux +// +build linux // Package stopfd provides an type that can be used to signal the stop of a dispatcher. package stopfd