summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-10 18:57:32 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-10 18:57:32 +0000
commitabf7dedf4a24d1493953c27c368242e3be1175b8 (patch)
treee3e1420133f08de3431ff649abcba560eafde6e2
parent2d63e8603fe09a6be34f457d9eb879170e9c1953 (diff)
downloadATCD-abf7dedf4a24d1493953c27c368242e3be1175b8.tar.gz
Fixed signed/unsigned comparisons.
-rw-r--r--tests/MT_Reactor_Timer_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/MT_Reactor_Timer_Test.cpp b/tests/MT_Reactor_Timer_Test.cpp
index c37c63714f8..989bc8cbb35 100644
--- a/tests/MT_Reactor_Timer_Test.cpp
+++ b/tests/MT_Reactor_Timer_Test.cpp
@@ -292,7 +292,7 @@ main (int, ASYS_TCHAR *[])
1);
ACE_Time_Value no_waiting (0);
- int events = 0;
+ ssize_t events = 0;
while (1)
{