summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog-98c8
-rw-r--r--TAO/tests/Cubit/TAO/IDL_Cubit/cubit_i.h2
2 files changed, 9 insertions, 1 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 64902baa5ee..0c19250bb71 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,11 @@
+Mon Nov 3 18:30:09 1997 Sergio Flores <sergio@macarena.cs.wustl.edu>
+
+ * cubit_i.h (objrefs): Fixed invalid comparison between a signed
+ and unsigned variable.
+
+ * tests/Cubit/TAO/IDL_Cubit/svr.cpp (main): Fixed comparison of
+ ">=" on an unsigned variable to compare only ">".
+
Mon Nov 03 16:52:47 1997 <nw1@CHA-CHA>
* TAO_IDL/fe/y.tab.cpp: Commented out include <values.h>. This
diff --git a/TAO/tests/Cubit/TAO/IDL_Cubit/cubit_i.h b/TAO/tests/Cubit/TAO/IDL_Cubit/cubit_i.h
index 2291dadf7dc..a175f39abdd 100644
--- a/TAO/tests/Cubit/TAO/IDL_Cubit/cubit_i.h
+++ b/TAO/tests/Cubit/TAO/IDL_Cubit/cubit_i.h
@@ -88,7 +88,7 @@ public:
private:
Cubit_i_ptr *my_cubit_;
- int numobjs_;
+ u_int numobjs_;
};
#endif /* _CUBIT_I_HH */