From 3a7715a33f10edff8adf4049f2f55bd8c22d04f7 Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Fri, 29 Apr 2016 18:34:32 +0200 Subject: [PATCH] Fix typo. --- src/control/controller.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/control/controller.rs b/src/control/controller.rs index e9bc1f2..bedcf20 100644 --- a/src/control/controller.rs +++ b/src/control/controller.rs @@ -155,7 +155,9 @@ impl Controller { let response = match response_result { Ok(response) => response, Err(e) => { - error!("Error receving from client channel: {}", e); + error!( + "Error receiving from client channel: {}", e + ); break; } };