From ea08765f400d828907f231baa84bd880a00d95f1 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Fri, 18 Mar 2022 09:11:53 +0100 Subject: go fmt: use go 1.18 conditional-build syntax Signed-off-by: Valentin Rothberg --- pkg/criu/criu.go | 1 + pkg/criu/criu_unsupported.go | 1 + 2 files changed, 2 insertions(+) (limited to 'pkg/criu') diff --git a/pkg/criu/criu.go b/pkg/criu/criu.go index 967da0dca..b54870abc 100644 --- a/pkg/criu/criu.go +++ b/pkg/criu/criu.go @@ -1,3 +1,4 @@ +//go:build linux // +build linux package criu diff --git a/pkg/criu/criu_unsupported.go b/pkg/criu/criu_unsupported.go index 51cd0c1fd..3e3ed9c6c 100644 --- a/pkg/criu/criu_unsupported.go +++ b/pkg/criu/criu_unsupported.go @@ -1,3 +1,4 @@ +//go:build !linux // +build !linux package criu -- cgit v1.2.3-54-g00ecf