diff options
author | Steve Huston <shuston@riverace.com> | 1999-05-25 21:35:00 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1999-05-25 21:35:00 +0000 |
commit | f086ee1489c2610cde433efbc56dfe7397ce33ea (patch) | |
tree | 27d9c77a6230659bf417204a1d722e280d61f0ac /tests | |
parent | cb1a541ca5796cbb5d913bf188d2a95422bea06a (diff) | |
download | ATCD-f086ee1489c2610cde433efbc56dfe7397ce33ea.tar.gz |
Fixed signed/unsigned mismatch.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/SOCK_Send_Recv_Test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/SOCK_Send_Recv_Test.cpp b/tests/SOCK_Send_Recv_Test.cpp index bef7570954d..b458f56528a 100644 --- a/tests/SOCK_Send_Recv_Test.cpp +++ b/tests/SOCK_Send_Recv_Test.cpp @@ -1,6 +1,6 @@ // $Id$ -// ============================================================================ +// =========================================================================== // // = LIBRARY // tests @@ -74,7 +74,7 @@ client (void *arg) // there is no more and no less. unsigned char buff[255]; - unsigned int i; + size_t i; ssize_t len; // The server will verify that this data pattern gets there intact. |