Fix Windows disconnect method

This commit is contained in:
Patrick Auernig 2018-04-07 13:34:00 +02:00
parent 4443423407
commit f43c9697ae
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ impl Connection for WindowsConnection {
Ok(Self { socket })
}
fn disconnect() -> Result<()> {
fn disconnect(&self) -> Result<()> {
Ok(())
}