summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/IOR_MCast/client.cpp
diff options
context:
space:
mode:
authormsmit <msmit@remedy.nl>2011-05-27 10:10:58 +0000
committermsmit <msmit@remedy.nl>2011-05-27 10:10:58 +0000
commit7b43ed036b843eee6bb8c6eb75aead166399ca4a (patch)
treedb3cbe6d994baf7b690f5da885f51e22be07f652 /TAO/orbsvcs/tests/IOR_MCast/client.cpp
parentd49b772c16791242c77bd5a5357d8b0764b4bf6a (diff)
downloadATCD-7b43ed036b843eee6bb8c6eb75aead166399ca4a.tar.gz
Fri May 27 10:09:25 UTC 2011 Marcel Smit <msmit@remedy.nl>
* orbsvcs/examples/ImR/Advanced/TestClient.cpp: * orbsvcs/tests/IOR_MCast/client.cpp: * orbsvcs/tests/Security/Bug_1107_Regression/client.cpp: Statisfy Coverity and the GNU 4.6 gcc compiler. Using a returned value either by using ACE_UNUSED_ARG or to print in a log message. * tests/Sequence_Unit_Tests/value_sequence_tester.hpp: Fuzz.
Diffstat (limited to 'TAO/orbsvcs/tests/IOR_MCast/client.cpp')
-rw-r--r--TAO/orbsvcs/tests/IOR_MCast/client.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/TAO/orbsvcs/tests/IOR_MCast/client.cpp b/TAO/orbsvcs/tests/IOR_MCast/client.cpp
index 3715d86f4da..f70cc79d142 100644
--- a/TAO/orbsvcs/tests/IOR_MCast/client.cpp
+++ b/TAO/orbsvcs/tests/IOR_MCast/client.cpp
@@ -8,7 +8,8 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
ior_mcast_Client_i client;
- client.init (argc, argv);
+ int status = client.init (argc, argv);
+ ACE_UNUSED_ARG (status);
return 0;
}