diff options
author | Alan Conway <aconway@apache.org> | 2008-09-26 17:11:19 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-09-26 17:11:19 +0000 |
commit | b22dd47558cc11572d080ac25808012092dda597 (patch) | |
tree | 32c1948cfa796d74bbb8e5d137c1413900311b22 /cpp/src/qpid/cluster/Cluster.cpp | |
parent | 13214589d918524d7058b673098fea03179290bd (diff) | |
download | qpid-python-b22dd47558cc11572d080ac25808012092dda597.tar.gz |
Fix build problems on rhel 5.2 and 64-bit encoding bug.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@699413 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Cluster.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/Cluster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Cluster.cpp b/cpp/src/qpid/cluster/Cluster.cpp index 7edf9f9392..c1775616a8 100644 --- a/cpp/src/qpid/cluster/Cluster.cpp +++ b/cpp/src/qpid/cluster/Cluster.cpp @@ -115,7 +115,7 @@ void Cluster::mcastControl(const framing::AMQBody& body, Connection* cptr) { mcastEvent(e); } -void Cluster::mcastBuffer(const char* data, size_t size, const ConnectionId& connection, size_t id) { +void Cluster::mcastBuffer(const char* data, size_t size, const ConnectionId& connection, uint32_t id) { Event e(DATA, connection, size, id); memcpy(e.getData(), data, size); QPID_LOG(trace, "MCAST " << e); |