diff options
Diffstat (limited to 'crates/vfs-notify/src')
-rw-r--r-- | crates/vfs-notify/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/vfs-notify/src/lib.rs b/crates/vfs-notify/src/lib.rs index 282cf0358..68fdb8cb0 100644 --- a/crates/vfs-notify/src/lib.rs +++ b/crates/vfs-notify/src/lib.rs | |||
@@ -83,8 +83,8 @@ impl NotifyActor { | |||
83 | } | 83 | } |
84 | } | 84 | } |
85 | 85 | ||
86 | fn run(mut self, receiver: Receiver<Message>) { | 86 | fn run(mut self, inbox: Receiver<Message>) { |
87 | while let Some(event) = self.next_event(&receiver) { | 87 | while let Some(event) = self.next_event(&inbox) { |
88 | log::debug!("vfs-notify event: {:?}", event); | 88 | log::debug!("vfs-notify event: {:?}", event); |
89 | match event { | 89 | match event { |
90 | Event::Message(msg) => match msg { | 90 | Event::Message(msg) => match msg { |