Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wks committed Apr 2, 2024
1 parent f049f73 commit a6d834a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vm/tests/mock_tests/mock_test_init_fork.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ const NUM_WORKER_THREADS: usize = 4;
const TIMEOUT: Duration = Duration::from_secs(5);

/// A convenient wrapper that panics on timeout.
fn wait_timeout_while<'a, 'c, T, F>(
fn wait_timeout_while<'a, T, F>(
guard: MutexGuard<'a, T>,
condvar: &'c Condvar,
condvar: &Condvar,
condition: F,
) -> MutexGuard<'a, T>
where
Expand Down

0 comments on commit a6d834a

Please sign in to comment.