We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50444fb commit 28c729cCopy full SHA for 28c729c
1 file changed
src/main.rs
@@ -104,10 +104,7 @@ async fn main() {
104
let next = match addr.port().checked_add(1) {
105
Some(n) if n - start_port <= 100 => n,
106
_ => {
107
- serr!(
108
- "no available port in range {start_port}–{}",
109
- addr.port()
110
- );
+ serr!("no available port in range {start_port}–{}", addr.port());
111
std::process::exit(1);
112
}
113
};
0 commit comments