Skip to content

Commit

Permalink
Clippy/build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
evanrittenhouse committed Apr 25, 2024
1 parent c6bce4d commit 5921dc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dgram/src/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub fn send_to(
};

let sent = send_msg(
&fd,
fd,
send_buf,
gso_settings,
tx_time,
Expand Down Expand Up @@ -53,7 +53,7 @@ pub async fn recv_from(
};

let recvd = recv_msg(
&fd,
fd,
read_buf,
cmsg_space,
msg_flags.unwrap_or(MsgFlags::empty()),
Expand Down

0 comments on commit 5921dc7

Please sign in to comment.