From 1693d4399641dc18bdee863269af1969164d70af Mon Sep 17 00:00:00 2001 From: brunsch Date: Thu, 15 Apr 1999 06:18:03 +0000 Subject: Removed signed/unsigned comparison warning. --- TAO/orbsvcs/tests/ImplRepo/nestea_i.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.1