summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-09-12 00:23:03 -0600
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-09-12 00:23:03 -0600
commit65c805bea141c59f1108265bd36dfef68fbe976e (patch)
tree97032ecc57fa7fe0e38b94af24a8ff1b81941c4b
parent2130c2ab56eb130c2fb6112098ea8ccb1fa235b0 (diff)
woops, remove cruft from inotify change
-rw-r--r--src/inotify/bits.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/inotify/bits.go b/src/inotify/bits.go
index 432933c..70dd012 100644
--- a/src/inotify/bits.go
+++ b/src/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 (