diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-12 19:22:33 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-12 19:22:33 +0000 |
commit | b2758525eae13aa3aa4d47bbdcb1408c6670aee1 (patch) | |
tree | 839ccc4c26f71ab47f70b95df7a562edd9915ecc /tests/MT_SOCK_Test.cpp | |
parent | 5decf6bdcea5c19c4bca8ef13cf34f17ea3301a4 (diff) | |
download | ATCD-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.cpp | 2 |
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")) { |