Skip to content

Commit

Permalink
windows
Browse files Browse the repository at this point in the history
  • Loading branch information
TrentHouliston committed Sep 26, 2023
1 parent c6fc8ba commit 2a69d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dsl/word/UDP.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ namespace dsl {
std::array<char, 0x100> cmbuff = {0};
util::network::sock_t remote{};
iovec payload{};
payload.iov_base = buffer.data();
payload.iov_base = reinterpret_cast<char*>(buffer.data());
payload.iov_len = static_cast<decltype(payload.iov_len)>(buffer.size());

// Make our message header to receive with
Expand Down

0 comments on commit 2a69d18

Please sign in to comment.