summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2016-01-12 10:00:49 +0000
committerGordon Sim <gsim@apache.org>2016-01-12 10:00:49 +0000
commit0bfae7d990b3f59cec2a2b9d4005a57f9685a148 (patch)
tree4b1715e29d6b6fcfd2e90cc0b356997b6307e8dc
parent0d2c1e3c0d3e5c5b3a5e611e1aa038089a7695da (diff)
downloadqpid-python-0bfae7d990b3f59cec2a2b9d4005a57f9685a148.tar.gz
NO-JIRA: initialise 'print' option to false
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1724188 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/examples/messaging/spout.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/examples/messaging/spout.cpp b/qpid/cpp/examples/messaging/spout.cpp
index d11bb8bd03..f8d1c7d77d 100644
--- a/qpid/cpp/examples/messaging/spout.cpp
+++ b/qpid/cpp/examples/messaging/spout.cpp
@@ -59,7 +59,8 @@ struct Options : OptionParser
url("127.0.0.1"),
timeout(0),
count(1),
- durable(false)
+ durable(false),
+ print(false)
{
add("broker,b", url, "url of broker to connect to");
add("timeout,t", timeout, "exit after the specified time");