Skip to content

Commit

Permalink
Fix compilation for OpenBSD (#443)
Browse files Browse the repository at this point in the history
Closes #442
  • Loading branch information
mattn committed Apr 21, 2022
1 parent ceba4ef commit 8fa037f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fsnotify_unsupported.go
Expand Up @@ -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

Expand Down

0 comments on commit 8fa037f

Please sign in to comment.