diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/agent/ManagementAgentImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/agent/ManagementAgentImpl.cpp b/cpp/src/qpid/agent/ManagementAgentImpl.cpp index c4108b0ae2..6a1542b1f2 100644 --- a/cpp/src/qpid/agent/ManagementAgentImpl.cpp +++ b/cpp/src/qpid/agent/ManagementAgentImpl.cpp @@ -170,7 +170,7 @@ uint32_t ManagementAgentImpl::pollCallbacks(uint32_t callLimit) } uint8_t rbuf[100]; - while (read(readFd, rbuf, 100) > 0); // Consume all signaling bytes + while (read(readFd, rbuf, 100) > 0) ; // Consume all signaling bytes return methodQueue.size(); } |