diff --git a/src/inotify/mod.rs b/src/inotify/mod.rs index 86f32c6b..ce7e0753 100644 --- a/src/inotify/mod.rs +++ b/src/inotify/mod.rs @@ -27,7 +27,6 @@ impl INotifyWatcher { Thread::spawn(move || { loop { match ino.wait_for_events() { - Ok(es) if es.is_empty() => break, Ok(es) => { for e in es.iter() { handle_event(e.clone(), &tx, &paths)