You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2008/09/03 03:29:15 UTC

svn commit: r691456 - in /incubator/qpid/trunk/qpid/cpp/src/qpid/cluster: Connection.cpp Connection.h

Author: aconway
Date: Tue Sep  2 18:29:14 2008
New Revision: 691456

URL: http://svn.apache.org/viewvc?rev=691456&view=rev
Log:
Fix build error in cluster code.

Modified:
    incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.cpp
    incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.h

Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.cpp
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.cpp?rev=691456&r1=691455&r2=691456&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.cpp Tue Sep  2 18:29:14 2008
@@ -86,7 +86,7 @@
 // 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);
 }
 

Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.h
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.h?rev=691456&r1=691455&r2=691456&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.h (original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Connection.h Tue Sep  2 18:29:14 2008
@@ -61,7 +61,7 @@
     // 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();