From: mattn Date: Thu, 21 Apr 2022 18:01:20 +0000 (+0900) Subject: Fix compilation for OpenBSD (#443) X-Git-Tag: v1.7.2~121 X-Git-Url: https://go.fuhry.dev/?a=commitdiff_plain;h=8fa037fc336e718b89600a83712df72041cf851b;p=fsnotify.git Fix compilation for OpenBSD (#443) Closes #442 --- diff --git a/fsnotify_unsupported.go b/fsnotify_unsupported.go index eb25cb4..5968855 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