summaryrefslogtreecommitdiff
path: root/qpid
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-09-03 01:29:14 +0000
committerAlan Conway <aconway@apache.org>2008-09-03 01:29:14 +0000
commitc442c23e21c2d18feb745d6e55811b60c7ba4b1d (patch)
tree491f1c2313e11567fd59e5b60795105c278a30a2 /qpid
parentaa675a30d62fa8896eeeb441cb36dd3f18d4b23f (diff)
downloadqpid-python-c442c23e21c2d18feb745d6e55811b60c7ba4b1d.tar.gz
Fix build error in cluster code.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@691456 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid')
-rw-r--r--qpid/cpp/src/qpid/cluster/Connection.cpp2
-rw-r--r--qpid/cpp/src/qpid/cluster/Connection.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/cluster/Connection.cpp b/qpid/cpp/src/qpid/cluster/Connection.cpp
index b82b4565c3..8faad9d6d5 100644
--- a/qpid/cpp/src/qpid/cluster/Connection.cpp
+++ b/qpid/cpp/src/qpid/cluster/Connection.cpp
@@ -86,7 +86,7 @@ void Connection::deliverClose () {
// Delivery of doOutput allows us to run the real connection doOutput()
// which stocks up the write buffers with data.
//
-void Connection::deliverDoOutput(size_t requested) {
+void Connection::deliverDoOutput(uint32_t requested) {
output.deliverDoOutput(requested);
}
diff --git a/qpid/cpp/src/qpid/cluster/Connection.h b/qpid/cpp/src/qpid/cluster/Connection.h
index 648ec1a1d0..6eac1453ac 100644
--- a/qpid/cpp/src/qpid/cluster/Connection.h
+++ b/qpid/cpp/src/qpid/cluster/Connection.h
@@ -61,7 +61,7 @@ class Connection :
// self-delivery of intercepted extension points.
void deliver(framing::AMQFrame& f);
void deliverClose();
- void deliverDoOutput(size_t requested);
+ void deliverDoOutput(uint32_t requested);
void codecDeleted();