summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-15 06:18:03 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-15 06:18:03 +0000
commit1693d4399641dc18bdee863269af1969164d70af (patch)
tree1f974bc95e535fe6104befe21d3e16635b799dc3
parent67c74c9f9c76e7463e099fc63964586ab2839935 (diff)
downloadATCD-unlabeled-1.5.2.tar.gz
Removed signed/unsigned comparison warning.unlabeled-1.5.2
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/nestea_i.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/nestea_i.cpp b/TAO/orbsvcs/tests/ImplRepo/nestea_i.cpp
index 0df205d1dc7..2ed96b25d38 100644
--- a/TAO/orbsvcs/tests/ImplRepo/nestea_i.cpp
+++ b/TAO/orbsvcs/tests/ImplRepo/nestea_i.cpp
@@ -60,7 +60,7 @@ Nestea_i::crush (CORBA::Long cans,
if (TAO_debug_level)
ACE_DEBUG ((LM_DEBUG, "Nestea_i::crush %d cans\n", cans));
- if (cans > this->cans_)
+ if (ACE_static_cast (ACE_UINT32, cans) > this->cans_)
this->cans_ = 0;
else
this->cans_ -= cans;