summaryrefslogtreecommitdiff
path: root/src/inotify/bits.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-09-12 11:20:19 -0600
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-09-12 11:20:19 -0600
commit8e49597e479f878b5e9aff6d738717eaa11c5cb7 (patch)
tree85eaef78b0218c6c29498dc5866c2f27dfa5f944 /src/inotify/bits.go
parente8199ec88c7ca8107c4fb9238e383a4a9eb981ee (diff)
gofmt, use make(chan) without a number argument where possible
Diffstat (limited to 'src/inotify/bits.go')
-rw-r--r--src/inotify/bits.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inotify/bits.go b/src/inotify/bits.go
index 2c65736..eb0270f 100644
--- a/src/inotify/bits.go
+++ b/src/inotify/bits.go
@@ -11,6 +11,7 @@ type Fd int
type Wd int
type Mask uint32
+
const (
// Supported events suitable for the `mask` parameter of Inotify.AddWatch().
IN_ACCESS Mask = (1<< 0) // File was accessed.