Author: tross
Date: Wed Sep 3 18:24:40 2008
New Revision: 691848
URL: http://svn.apache.org/viewvc?rev=691848&view=rev
Log:
Cleaned up a warning on the Fedora 9 compiler
Modified:
incubator/qpid/trunk/qpid/cpp/src/qpid/agent/ManagementAgentImpl.cpp
Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/agent/ManagementAgentImpl.cpp
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/agent/ManagementAgentImpl.cpp?rev=691848&r1=691847&r2=691848&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/agent/ManagementAgentImpl.cpp
(original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/agent/ManagementAgentImpl.cpp Wed
Sep 3 18:24:40 2008
@@ -170,7 +170,7 @@
}
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();
}