diff options
Diffstat (limited to 'TAO/tests/Param_Test/ub_long_seq.cpp')
-rw-r--r-- | TAO/tests/Param_Test/ub_long_seq.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tests/Param_Test/ub_long_seq.cpp b/TAO/tests/Param_Test/ub_long_seq.cpp index 01ac31fc98b..87b7211e33c 100644 --- a/TAO/tests/Param_Test/ub_long_seq.cpp +++ b/TAO/tests/Param_Test/ub_long_seq.cpp @@ -169,9 +169,9 @@ Test_Long_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")); @@ -180,9 +180,9 @@ Test_Long_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")); @@ -191,9 +191,9 @@ Test_Long_Sequence::print_values (void) { ACE_DEBUG ((LM_DEBUG, "Element #%d\n" - "in : %s\n", + "in : %d\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")); @@ -202,9 +202,9 @@ Test_Long_Sequence::print_values (void) { ACE_DEBUG ((LM_DEBUG, "Element #%d\n" - "in : %s\n", + "in : %d\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")); |