diff --git a/src/lib.rs b/src/lib.rs
index 31ed551a..0d0372ff 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -279,9 +279,7 @@ impl InnerConnection {
options.push(("database".to_owned(), database));
}
- try!(conn.stream.write_message(&frontend::StartupMessage {
- parameters: &options,
- }));
+ try!(conn.stream.write_message(&frontend::StartupMessage { parameters: &options }));
try!(conn.stream.flush());
try!(conn.handle_auth(user));
@@ -337,7 +335,8 @@ impl InnerConnection {
}
}
- fn read_message_with_notification_nonblocking(&mut self) -> std::io::Result