diff options
| author | Gordon Sim <gsim@apache.org> | 2008-07-31 16:14:35 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-07-31 16:14:35 +0000 |
| commit | 38b8294a05190bd60bcb149d8a82dff3472f7ec8 (patch) | |
| tree | 408dafea4f1a3e31128fe3c587aea9379ddb515d /cpp | |
| parent | 272b42db45a47a952a8343a08edda44a6984037a (diff) | |
| download | qpid-python-38b8294a05190bd60bcb149d8a82dff3472f7ec8.tar.gz | |
Fixed for 64bit systems
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@681407 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/src/qpid/management/ManagementBroker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/management/ManagementBroker.cpp b/cpp/src/qpid/management/ManagementBroker.cpp index 223811ebc2..15263b5f2a 100644 --- a/cpp/src/qpid/management/ManagementBroker.cpp +++ b/cpp/src/qpid/management/ManagementBroker.cpp @@ -414,7 +414,7 @@ bool ManagementBroker::dispatchCommand (Deliverable& deliverable, } else if (routingKey.compare(0, 6, "agent.") == 0) { - uint32_t delim = routingKey.find('.', 6); + std::string::size_type delim = routingKey.find('.', 6); if (delim == string::npos) delim = routingKey.length(); string bank = routingKey.substr(6, delim - 6); |
