From 8fa037fc336e718b89600a83712df72041cf851b Mon Sep 17 00:00:00 2001 From: mattn Date: Fri, 22 Apr 2022 03:01:20 +0900 Subject: [PATCH] Fix compilation for OpenBSD (#443) Closes #442 --- fsnotify_unsupported.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fsnotify_unsupported.go b/fsnotify_unsupported.go index eb25cb40..59688559 100644 --- a/fsnotify_unsupported.go +++ b/fsnotify_unsupported.go @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !solaris && !windows -// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!solaris,!windows +//go:build !darwin && !dragonfly && !freebsd && !openbsd && !linux && !netbsd && !solaris && !windows +// +build !darwin,!dragonfly,!freebsd,!openbsd,!linux,!netbsd,!solaris,!windows package fsnotify