Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
slacrherbst committed Aug 17, 2024
1 parent 7d23cc1 commit 38f9833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rogue/protocols/udp/Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void rpu::Client::runThread(std::weak_ptr<int> lockPtr) {
if (res > 0) {
// Message was too big
if (res > avail) {
udpLog_->warning("Receive data was too large. Rx=%i, avail=%i Dropping.",res,avail);
udpLog_->warning("Receive data was too large. Rx=%i, avail=%i Dropping.", res, avail);
} else {
buff->setPayload(res);
sendFrame(frame);
Expand Down

0 comments on commit 38f9833

Please sign in to comment.