hfsevents 0.1.5 → 0.1.6
raw patch · 3 files changed
+4/−4 lines, 3 filesdep ~cereal
Dependency ranges changed: cereal
Files
- cbits/c_fsevents.h +1/−1
- cbits/c_fsevents.m +1/−1
- hfsevents.cabal +2/−2
cbits/c_fsevents.h view
@@ -21,7 +21,7 @@ , void** wp ); -int destroyWatch(watch* w);+void destroyWatch(watch* w); void osVersion( SInt32 *majorVersion , SInt32 *minorVersion
cbits/c_fsevents.m view
@@ -89,7 +89,7 @@ return rv; } -int destroyWatch(watch* w) {+void destroyWatch(watch* w) { pthread_mutex_lock(&w->mut); FSEventStreamStop(w->eventStream); FSEventStreamInvalidate(w->eventStream);
hfsevents.cabal view
@@ -1,5 +1,5 @@ name: hfsevents-version: 0.1.5+version: 0.1.6 synopsis: File/folder watching for OS X homepage: http://github.com/luite/hfsevents license: BSD3@@ -28,7 +28,7 @@ build-depends: base >= 4 && < 5, bytestring,- cereal >= 0.3 && < 0.5,+ cereal >= 0.3 && < 0.6, unix, mtl, text