From 1b890e8321c183a72ec11acab1dcb65af8106676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sat, 16 Oct 2021 00:29:01 +0200 Subject: [PATCH] aquatic_udp_protocol: run rustfmt --- aquatic_udp_protocol/src/response.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aquatic_udp_protocol/src/response.rs b/aquatic_udp_protocol/src/response.rs index c785759..b8a514a 100644 --- a/aquatic_udp_protocol/src/response.rs +++ b/aquatic_udp_protocol/src/response.rs @@ -225,7 +225,9 @@ impl Response { Ok((ErrorResponse { transaction_id: TransactionId(transaction_id), - message: String::from_utf8_lossy(&inner[position..]).into_owned().into(), + message: String::from_utf8_lossy(&inner[position..]) + .into_owned() + .into(), }) .into()) }