From 56fa48d289e9a02931a590ccc6bdadfe710900eb Mon Sep 17 00:00:00 2001 From: Sebastiaan Mannem Date: Fri, 18 Feb 2022 22:03:41 +0100 Subject: [PATCH] Fixing some fmt issues (just running gofmt -w .) --- internal/timer/timer_fallback.go | 1 + internal/timer/timer_linux.go | 1 + 2 files changed, 2 insertions(+) diff --git a/internal/timer/timer_fallback.go b/internal/timer/timer_fallback.go index 510072618..b3d4edcc6 100644 --- a/internal/timer/timer_fallback.go +++ b/internal/timer/timer_fallback.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build !linux // +build !linux package timer diff --git a/internal/timer/timer_linux.go b/internal/timer/timer_linux.go index 3f6e9c3f9..3d75d9835 100644 --- a/internal/timer/timer_linux.go +++ b/internal/timer/timer_linux.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build linux // +build linux package timer