summaryrefslogtreecommitdiff
path: root/TAO/tests/Single_Read/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Single_Read/client.cpp')
-rw-r--r--TAO/tests/Single_Read/client.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/tests/Single_Read/client.cpp b/TAO/tests/Single_Read/client.cpp
index d229244c8d1..59ae6518638 100644
--- a/TAO/tests/Single_Read/client.cpp
+++ b/TAO/tests/Single_Read/client.cpp
@@ -99,16 +99,16 @@ main (int argc, char **argv)
ACE_TRY_ENV);
ACE_TRY_CHECK;
- test::data the_data0 (data_bytes);
- the_data0.length (data_bytes);
+ test::data data (data_bytes);
+ data.length (data_bytes);
data_bytes *= 10;
- test::data the_data1 (data_bytes);
- the_data1.length (data_bytes);
+ test::data data1 (data_bytes);
+ data.length (data_bytes);
data_bytes /= 100;
- test::data the_data2 (data_bytes);
- the_data2.length (data_bytes);
+ test::data data2 (data_bytes);
+ data.length (data_bytes);
for (CORBA::ULong i = 1; i <= iterations; ++i)
{
@@ -118,19 +118,19 @@ main (int argc, char **argv)
// Invoke the oneway method.
test_object->method (i,
- the_data0,
+ data,
ACE_TRY_ENV);
ACE_TRY_CHECK;
// Invoke the oneway method.
test_object->method (i,
- the_data1,
+ data1,
ACE_TRY_ENV);
ACE_TRY_CHECK;
// Invoke the oneway method.
test_object->method (i,
- the_data2,
+ data2,
ACE_TRY_ENV);
ACE_TRY_CHECK;
}