summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/IOR_MCast
diff options
context:
space:
mode:
authormsmit <msmit@remedy.nl>2011-05-27 09:15:19 +0000
committermsmit <msmit@remedy.nl>2011-05-27 09:15:19 +0000
commit049823a8c4ab9dfe79abf04df9dc2efecea46b87 (patch)
treec3b941004b539c8487c7141923abb68c1fda4baf /TAO/orbsvcs/tests/IOR_MCast
parent31dda001df62d9072c8ff1c06f344688c3d766e5 (diff)
downloadATCD-049823a8c4ab9dfe79abf04df9dc2efecea46b87.tar.gz
Fri May 27 09:14:29 UTC 2011 Marcel Smit <msmit@remedy.nl>
* orbsvcs/LoadBalancer/LoadMonitor.cpp: * orbsvcs/examples/ImR/Advanced/TestClient.cpp: * orbsvcs/tests/Bug_3486_Regression/server.cpp: * orbsvcs/tests/IOR_MCast/client.cpp: * orbsvcs/tests/Notify/Bug_2926_Regression/server.cpp: * orbsvcs/tests/Notify/Bug_3646b_Regression/server.cpp: * orbsvcs/tests/Notify/Bug_3646c_Regression/server.cpp: * orbsvcs/tests/Notify/Bug_3646d_Regression/server.cpp: * orbsvcs/tests/Notify/Bug_3663_Regression/server.cpp: * orbsvcs/tests/Notify/Bug_3688b_Regression/server.cpp: * orbsvcs/tests/Security/Bug_1107_Regression/client.cpp: Resolved gcc 4.6 warnings: variable was set but not used.
Diffstat (limited to 'TAO/orbsvcs/tests/IOR_MCast')
-rw-r--r--TAO/orbsvcs/tests/IOR_MCast/client.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/TAO/orbsvcs/tests/IOR_MCast/client.cpp b/TAO/orbsvcs/tests/IOR_MCast/client.cpp
index 6764fe26742..3715d86f4da 100644
--- a/TAO/orbsvcs/tests/IOR_MCast/client.cpp
+++ b/TAO/orbsvcs/tests/IOR_MCast/client.cpp
@@ -8,8 +8,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
ior_mcast_Client_i client;
- int init_result;
- init_result = client.init (argc, argv);
+ client.init (argc, argv);
return 0;
}