diff options
Diffstat (limited to 'src/zenhorde/hordeagentmessage.cpp')
| -rw-r--r-- | src/zenhorde/hordeagentmessage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenhorde/hordeagentmessage.cpp b/src/zenhorde/hordeagentmessage.cpp index 31498972f..c75cabba8 100644 --- a/src/zenhorde/hordeagentmessage.cpp +++ b/src/zenhorde/hordeagentmessage.cpp @@ -312,7 +312,7 @@ AsyncAgentMessageChannel::AsyncReadResponse(int32_t TimeoutMs, AsyncResponseHand return; } - // No frames queued — store pending handler and arm timeout + // No frames queued - store pending handler and arm timeout m_PendingHandler = std::move(Handler); if (TimeoutMs >= 0) @@ -321,7 +321,7 @@ AsyncAgentMessageChannel::AsyncReadResponse(int32_t TimeoutMs, AsyncResponseHand m_TimeoutTimer->async_wait([this](const asio::error_code& Ec) { if (Ec) { - return; // Cancelled — frame arrived before timeout + return; // Cancelled - frame arrived before timeout } if (m_PendingHandler) |