summaryrefslogtreecommitdiffstats
path: root/ipc/examples/assuan-client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/examples/assuan-client.rs')
-rw-r--r--ipc/examples/assuan-client.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/examples/assuan-client.rs b/ipc/examples/assuan-client.rs
index f6d19235..aa7f3ed8 100644
--- a/ipc/examples/assuan-client.rs
+++ b/ipc/examples/assuan-client.rs
@@ -15,7 +15,7 @@ fn main() {
.help("Commands to send to the server"))
.get_matches();
- let mut rt = tokio::runtime::Runtime::new().unwrap();
+ let rt = tokio::runtime::Runtime::new().unwrap();
rt.block_on(async {
let mut c = Client::connect(matches.value_of("server").unwrap()).await.unwrap();
for command in matches.values_of("commands").unwrap() {