Skip to content

Commit

Permalink
error
Browse files Browse the repository at this point in the history
  • Loading branch information
TrentHouliston committed Aug 4, 2023
1 parent 4670b60 commit 5bd1006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/dsl/TCP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class TestReactor : public test_util::TestBase<TestReactor, 10000> {

// Write on our socket
events.push_back(target.name + " sending");
auto written = ::send(fd, TEST_STRING.data(), socklen_t(TEST_STRING.size()), 0);
::send(fd, TEST_STRING.data(), socklen_t(TEST_STRING.size()), 0);

// Receive the echo
std::array<char, 1024> buff{};
Expand Down

0 comments on commit 5bd1006

Please sign in to comment.