Skip to content

Commit

Permalink
Fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
de-sh committed May 12, 2022
1 parent adac206 commit 32a73ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rumqttc/examples/async_manual_acks_v5.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
// }
}

async fn requests(mut client: AsyncClient) {
async fn requests(client: &AsyncClient) {
for i in 1..=10 {
client
.publish("hello/world", QoS::AtLeastOnce, false, vec![1; i])
Expand Down

0 comments on commit 32a73ce

Please sign in to comment.