Update for rust format

This commit is contained in:
Colm 2018-02-14 04:50:51 +00:00 committed by GitHub
parent 63cc63b4b0
commit d0ffb2ecdd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,7 +82,10 @@ pub fn authenticate(
Some((0xad, data)) => {
let error_data: APLoginFailed = protobuf::parse_from_bytes(data.as_ref()).unwrap();
panic!("Authentication failed with reason: {:?}", error_data.get_error_code())
panic!(
"Authentication failed with reason: {:?}",
error_data.get_error_code()
)
}
Some((cmd, _)) => panic!("Unexpected packet {:?}", cmd),