summaryrefslogtreecommitdiff
path: root/tests/MT_SOCK_Test.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-12 19:22:33 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-12 19:22:33 +0000
commitb2758525eae13aa3aa4d47bbdcb1408c6670aee1 (patch)
tree839ccc4c26f71ab47f70b95df7a562edd9915ecc /tests/MT_SOCK_Test.cpp
parent5decf6bdcea5c19c4bca8ef13cf34f17ea3301a4 (diff)
downloadATCD-b2758525eae13aa3aa4d47bbdcb1408c6670aee1.tar.gz
changed type of i back to size_t now that ACE_MAX_CLIENTS is size_t
Diffstat (limited to 'tests/MT_SOCK_Test.cpp')
-rw-r--r--tests/MT_SOCK_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/MT_SOCK_Test.cpp b/tests/MT_SOCK_Test.cpp
index 5ed964e3c89..40a45928abf 100644
--- a/tests/MT_SOCK_Test.cpp
+++ b/tests/MT_SOCK_Test.cpp
@@ -224,7 +224,7 @@ spawn (void)
server_addr.get_port_number ()));
#if !defined (ACE_WIN32) && !defined (VXWORKS)
- for (int i = 0; i < ACE_MAX_CLIENTS; i++)
+ for (size_t i = 0; i < ACE_MAX_CLIENTS; i++)
{
switch (ACE_OS::fork ("child"))
{