diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-09-12 00:23:03 -0600 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-09-12 00:23:03 -0600 |
commit | ea070b33ad5d3c865fc566366ac3ce8b2fa6818a (patch) | |
tree | bd5137bee361e38da8d5acda19acb1ac1e007b9e /inotify | |
parent | 7269d255ce7206376b328caaf376d4f875acfd1b (diff) |
woops, remove cruft from inotify change
Diffstat (limited to 'inotify')
-rw-r--r-- | inotify/bits.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/inotify/bits.go b/inotify/bits.go index 432933c..70dd012 100644 --- a/inotify/bits.go +++ b/inotify/bits.go @@ -7,10 +7,8 @@ const ( IN_NONBLOCK uint32 = 00004000 ) -// Logically, Fd and Wd should be 'int', not 'int64', to match the OS. -// But, because there's no 'sync/atomic.SwapInt', we cast up to int64. -type Fd int64 -type Wd int64 +type Fd int +type Wd int type Mask uint32 const ( |