Skip to content

Commit b6b2658

Browse files
authored
Merge pull request #89 from Gor027/fix_clippy_warnings
Fix cargo clippy warnings after clippy update
2 parents 15afd26 + 682aaf0 commit b6b2658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scylla-rust-wrapper/src/future.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ impl CassFuture {
106106
.wait_for_value
107107
.wait_while(self.state.lock().unwrap(), |s| s.value.is_none())
108108
.unwrap();
109-
f(&mut *guard)
109+
f(&mut guard)
110110
}
111111

112112
pub fn set_callback(&self, cb: CassFutureCallback, data: *mut c_void) -> CassError {

0 commit comments

Comments
 (0)