Remove obvious empty statements (i.e. stray semicolons)

This commit is contained in:
Tobias Brunner
2024-02-29 15:30:40 +01:00
parent 9d1f325a77
commit 6dee8587f0
22 changed files with 28 additions and 28 deletions
@@ -595,7 +595,7 @@ METHOD(socket_t, sender, status_t,
}
memset(&msg, 0, sizeof(struct msghdr));
msg.msg_name = dst->get_sockaddr(dst);;
msg.msg_name = dst->get_sockaddr(dst);
msg.msg_namelen = *dst->get_sockaddr_len(dst);
iov.iov_base = data.ptr;
iov.iov_len = data.len;