From 283a986e0bad43518c8dd93bde003847a02fc641 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Mon, 22 Apr 2013 16:17:13 +0000 Subject: 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 --- qpid/cpp/src/tests/qpid-client-test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qpid/cpp/src/tests/qpid-client-test.cpp') 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") -- cgit v1.2.1