Skip to content

Commit

Permalink
Fix the wrong result type
Browse files Browse the repository at this point in the history
  • Loading branch information
YuanYuYuan committed Oct 3, 2023
1 parent 086991a commit 467cbe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-tcp/src/unicast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ impl LinkManagerUnicastTrait for LinkManagerUnicastTcp {
}
};
#[cfg(not(any(target_os = "android", target_os = "fuchsia", target_os = "linux")))]
let connection = self.new_listener_inner(&da).await?;
let connection = self.new_listener_inner(&da).await;

match connection {
Ok((socket, local_addr)) => {
Expand Down

0 comments on commit 467cbe4

Please sign in to comment.