Browse Source

Fix typo.

wip
Titouan Rigoudy 9 years ago
parent
commit
3a7715a33f
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/control/controller.rs

+ 3
- 1
src/control/controller.rs View File

@ -155,7 +155,9 @@ impl Controller {
let response = match response_result { let response = match response_result {
Ok(response) => response, Ok(response) => response,
Err(e) => { Err(e) => {
error!("Error receving from client channel: {}", e);
error!(
"Error receiving from client channel: {}", e
);
break; break;
} }
}; };


Loading…
Cancel
Save