Skip to content

Commit 43aa50d

Browse files
committed
fx: clippy error
1 parent 02cc4e6 commit 43aa50d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/init.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ fn event_reader(
330330
#[cfg(feature = "search")]
331331
{
332332
let (lock, cvar) = (&user_input_active.0, &user_input_active.1);
333-
let _guard = cvar.wait_while(&mut lock.lock(), |pending| !*pending);
333+
cvar.wait_while(&mut lock.lock(), |pending| !*pending);
334334
}
335335

336336
if event::poll(std::time::Duration::from_millis(100))

0 commit comments

Comments
 (0)