summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/bd_short_seq.cpp
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-09 16:24:59 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-09 16:24:59 +0000
commit2f57ffbe96fce34bc1cb039c720225f4f058da0c (patch)
tree91373e82387512eb8070997e591c7a4e72b65221 /TAO/tests/Param_Test/bd_short_seq.cpp
parente74f732149a85b4a87dfcc044b9597289ac24c0c (diff)
downloadATCD-2f57ffbe96fce34bc1cb039c720225f4f058da0c.tar.gz
ChangeLogTag:Fri Jun 9 09:17:46 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tests/Param_Test/bd_short_seq.cpp')
-rw-r--r--TAO/tests/Param_Test/bd_short_seq.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tests/Param_Test/bd_short_seq.cpp b/TAO/tests/Param_Test/bd_short_seq.cpp
index bde53b72a2b..8d585809a4a 100644
--- a/TAO/tests/Param_Test/bd_short_seq.cpp
+++ b/TAO/tests/Param_Test/bd_short_seq.cpp
@@ -181,9 +181,9 @@ Test_Bounded_Short_Sequence::print_values (void)
{
ACE_DEBUG ((LM_DEBUG,
"Element #%d\n"
- "in : %s\n",
+ "in : %d\n",
i,
- this->in_[i]? (const char *)this->in_[i]:"<nul>"));
+ this->in_[i]));
}
if (!this->in_.ptr ())
ACE_DEBUG ((LM_DEBUG, "\nin sequence is NUL\n"));
@@ -192,9 +192,9 @@ Test_Bounded_Short_Sequence::print_values (void)
{
ACE_DEBUG ((LM_DEBUG,
"Element #%d\n"
- "in : %s\n",
+ "in : %d\n",
i,
- (this->inout_[i]? (const char *)this->inout_[i]:"<nul>")));
+ this->inout_[i]));
}
if (!this->inout_.ptr ())
ACE_DEBUG ((LM_DEBUG, "\ninout sequence is NUL\n"));
@@ -205,7 +205,7 @@ Test_Bounded_Short_Sequence::print_values (void)
"Element #%d\n"
"in : %s\n",
i,
- (this->out_[i]? (const char *)this->out_[i]:"<nul>")));
+ this->out_[i]));
}
if (!this->out_.ptr ())
ACE_DEBUG ((LM_DEBUG, "\nout sequence is NUL\n"));
@@ -216,7 +216,7 @@ Test_Bounded_Short_Sequence::print_values (void)
"Element #%d\n"
"in : %s\n",
i,
- (this->ret_[i]? (const char *)this->ret_[i]:"<nul>")));
+ this->ret_[i]));
}
if (!this->ret_.ptr ())
ACE_DEBUG ((LM_DEBUG, "\nin sequence is NUL\n"));