summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2013-04-22 16:17:13 +0000
committerGordon Sim <gsim@apache.org>2013-04-22 16:17:13 +0000
commit283a986e0bad43518c8dd93bde003847a02fc641 (patch)
tree87ed89eba16073b7b6148af250cda089741c5061
parent63c2740964d73254df736ad71b1510cd2a595f05 (diff)
downloadqpid-python-283a986e0bad43518c8dd93bde003847a02fc641.tar.gz
Fix warning about uninitialised variable when running test under valgrind; caused by r1469088, QPID-3689
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1470605 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/tests/qpid-client-test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/qpid-client-test.cpp b/qpid/cpp/src/tests/qpid-client-test.cpp
index 2f5e8e5afe..9198324f93 100644
--- a/qpid/cpp/src/tests/qpid-client-test.cpp
+++ b/qpid/cpp/src/tests/qpid-client-test.cpp
@@ -47,7 +47,7 @@ struct Args : public TestOptions {
uint msgSize;
bool verbose;
- Args() : TestOptions("Simple test of Qpid c++ client; sends and receives a single message."), msgSize(26)
+ Args() : TestOptions("Simple test of Qpid c++ client; sends and receives a single message."), msgSize(26), verbose(false)
{
addOptions()
("size", optValue(msgSize, "N"), "message size")