summaryrefslogtreecommitdiff
path: root/TAO/tests/Timed_Buffered_Oneways/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Timed_Buffered_Oneways/client.cpp')
-rw-r--r--TAO/tests/Timed_Buffered_Oneways/client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Timed_Buffered_Oneways/client.cpp b/TAO/tests/Timed_Buffered_Oneways/client.cpp
index 86ce08e0086..f0f53a77c7c 100644
--- a/TAO/tests/Timed_Buffered_Oneways/client.cpp
+++ b/TAO/tests/Timed_Buffered_Oneways/client.cpp
@@ -271,8 +271,8 @@ main (int argc, char **argv)
ACE_TRY_ENV);
ACE_TRY_CHECK;
- test::data the_data (data_bytes);
- the_data.length (data_bytes);
+ test::data data (data_bytes);
+ data.length (data_bytes);
for (CORBA::ULong i = 1; i <= iterations; ++i)
{
@@ -282,7 +282,7 @@ main (int argc, char **argv)
// Invoke the oneway method.
test_object->method (i,
- the_data,
+ data,
work,
ACE_TRY_ENV);
ACE_TRY_CHECK;