1
Fork 0

Remove unnecessary trailing semicolon

This commit is contained in:
LinkTed 2020-09-26 20:04:10 +02:00
parent ce167f8be7
commit 6b0c3dfe00

View file

@ -400,7 +400,7 @@ impl<'a> Iterator for Messages<'a> {
target_os = "netbsd", target_os = "netbsd",
target_os = "openbsd", target_os = "openbsd",
))] { ))] {
msg.msg_controllen = self.buffer.len() as libc::socklen_t;; msg.msg_controllen = self.buffer.len() as libc::socklen_t;
} }
} }