diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-25 14:51:58 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-25 14:51:58 +0000 |
commit | b33329c31330b9f266db3b384c507664f534ff34 (patch) | |
tree | 0af511dd04f4edd6f7ea644738bf9283acebb1a1 /tests/SOCK_Send_Recv_Test.cpp | |
parent | 0fbbe26daf5a8a7ff231c12c13a58a3ddf2d1136 (diff) | |
download | ATCD-b33329c31330b9f266db3b384c507664f534ff34.tar.gz |
Fixed a signed/unsigned mismatch warning.
Diffstat (limited to 'tests/SOCK_Send_Recv_Test.cpp')
-rw-r--r-- | tests/SOCK_Send_Recv_Test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/SOCK_Send_Recv_Test.cpp b/tests/SOCK_Send_Recv_Test.cpp index 31c22ff3384..a4b3adebba2 100644 --- a/tests/SOCK_Send_Recv_Test.cpp +++ b/tests/SOCK_Send_Recv_Test.cpp @@ -74,7 +74,7 @@ client (void *arg) // there is no more and no less. unsigned char buff[255]; - int i; + unsigned int i; ssize_t len; // The server will verify that this data pattern gets there intact. |