summaryrefslogtreecommitdiff
path: root/TAO/tests
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2005-11-09 22:00:53 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2005-11-09 22:00:53 +0000
commit09c63fc129be548b467779645f7337a1b54baf56 (patch)
treebe61c7d3224d5e1fb8843f70549d1608769836d9 /TAO/tests
parent51e6857d660fc32ab8a8800cf423ec8817ddf365 (diff)
downloadATCD-09c63fc129be548b467779645f7337a1b54baf56.tar.gz
Wed Nov 9 15:59:01 2005 William Otte <wotte@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tests')
-rw-r--r--TAO/tests/Bug_2234_Regression/client.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Bug_2234_Regression/client.cpp b/TAO/tests/Bug_2234_Regression/client.cpp
index 1647611495b..52180b29d5a 100644
--- a/TAO/tests/Bug_2234_Regression/client.cpp
+++ b/TAO/tests/Bug_2234_Regression/client.cpp
@@ -264,22 +264,22 @@ main(
cB,
rB;
ACE_DEBUG( (LM_INFO, "a is ") );
- if (aB= (aA>>= aL))
+ if ((aB= (aA>>= aL)))
ACE_DEBUG( (LM_INFO, "%d", aL) );
else
ACE_DEBUG( (LM_INFO, "?") );
ACE_DEBUG( (LM_INFO, ", b is ") );
- if (bB= (bA>>= bL))
+ if ((bB= (bA>>= bL)))
ACE_DEBUG( (LM_INFO, "%d", bL) );
else
ACE_DEBUG( (LM_INFO, "?") );
ACE_DEBUG( (LM_INFO, ", c is ") );
- if (cB= (cA>>= cL))
+ if ((cB= (cA>>= cL)))
ACE_DEBUG( (LM_INFO, "%d", cL) );
else
ACE_DEBUG( (LM_INFO, "?") );
ACE_DEBUG( (LM_INFO, ", r is ") );
- if (rB= (rA>>= rL))
+ if ((rB= (rA>>= rL)))
ACE_DEBUG( (LM_INFO, "%d", rL) );
else
ACE_DEBUG( (LM_INFO, "?") );