From: Ian Jackson Date: Sun, 8 Aug 2021 00:12:04 +0000 (+0100) Subject: client: wrap a line X-Git-Tag: hippotat/1.0.0~242 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=b042de2e9ea9a384f426d69c0257f8cf80af5ed2;p=hippotat.git client: wrap a line Signed-off-by: Ian Jackson --- diff --git a/src/bin/client.rs b/src/bin/client.rs index 4528733..646006c 100644 --- a/src/bin/client.rs +++ b/src/bin/client.rs @@ -247,7 +247,10 @@ async fn run_client( { while let Some(TxQueued { data, expires }) = tx_queue.pop_front() { match upbound.add(ic.max_batch_up, data.into()/*todo:504*/) { - Err(data) => { tx_queue.push_front(TxQueued { data: data.into(), expires }); break; } + Err(data) => { + tx_queue.push_front(TxQueued { data: data.into(), expires }); + break; + } Ok(()) => { }, } }