Skip to content

Commit

Permalink
Fixed not-equals typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mdittmer committed Dec 28, 2012
1 parent af22927 commit bb9965c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/System/Win32/Notify.hs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ watch (WatchManager mvarMap) dir watchSubTree varieties = do
killWatch :: WatchId -> IO ()
killWatch (WatchId tid1 tid2 handle) = do
killThread tid1
if tid1 != tid2 then killThread tid2 else void
if tid1 /= tid2 then killThread tid2 else void
closeHandle handle

eventToVariety :: Event -> EventVariety
Expand Down

0 comments on commit bb9965c

Please sign in to comment.