Skip to content

Commit 418c775

Browse files
committed
Fix lint errors for macos
Fix clippy lint errors for rust 1.67 for macos Signed-off-by: James Sturtevant <jstur@microsoft.com>
1 parent 54aded1 commit 418c775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fn parse_sockaddr(addr: &str) -> Result<(Domain, &str)> {
5656
return Ok((Domain::Unix, addr));
5757
}
5858

59-
Err(Error::Others(format!("Scheme {:?} is not supported", addr)))
59+
Err(Error::Others(format!("Scheme {addr:?} is not supported")))
6060
}
6161

6262
#[cfg(any(

0 commit comments

Comments
 (0)