Skip to content

Commit ad66840

Browse files
authored
Merge pull request #977 from psychon/fix-clippy
xtrace-example: Fix a new clippy warning
2 parents 213a633 + c9fa1fe commit ad66840

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎xtrace-example/src/connection_inner.rs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ impl ConnectionInner {
185185

186186
// Actually parse the reply
187187
let (reply, _remaining) = (request.parser)(packet, &mut Vec::new())?;
188-
println!("server ({}): {:?}", seqno, &reply);
188+
println!("server ({}): {:?}", seqno, reply);
189189

190190
// If it is a reply to a QueryExtension request and the extension is present, update
191191
// our state (add the extension to our ext_info).

0 commit comments

Comments
 (0)