diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2007-01-09 20:29:06 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2007-01-09 20:29:06 +0000 |
commit | f420415a0fd5ab9f536d38aa6ec6bd4580b45e30 (patch) | |
tree | 2889ea8ccb36409d52c4c927050869e58eb94c3c /cpp/tests/LazyLoadedContentTest.cpp | |
parent | 34ba05808a60710ec97abf82620074c6b40fe1d4 (diff) | |
download | qpid-python-f420415a0fd5ab9f536d38aa6ec6bd4580b45e30.tar.gz |
version back merge from trunk rev 494553.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@494559 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/tests/LazyLoadedContentTest.cpp')
-rw-r--r-- | cpp/tests/LazyLoadedContentTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/tests/LazyLoadedContentTest.cpp b/cpp/tests/LazyLoadedContentTest.cpp index a8e7d61e0d..2075a6dd3a 100644 --- a/cpp/tests/LazyLoadedContentTest.cpp +++ b/cpp/tests/LazyLoadedContentTest.cpp @@ -19,6 +19,7 @@ * */ #include <LazyLoadedContent.h> +#include <AMQP_HighestVersion.h> #include <NullMessageStore.h> #include <qpid_test_plugin.h> #include <iostream> @@ -99,7 +100,7 @@ public: LazyLoadedContent content(&store, 0, in.size()); DummyHandler handler; u_int16_t channel = 3; - content.send(&handler, channel, framesize); + content.send(highestProtocolVersion, &handler, channel, framesize); check(handler, channel, outCount, out); } |