diff options
author | elliott_c <ocielliottc@users.noreply.github.com> | 2003-05-09 13:46:22 +0000 |
---|---|---|
committer | elliott_c <ocielliottc@users.noreply.github.com> | 2003-05-09 13:46:22 +0000 |
commit | 1ace327b51954c5ea9a4a8ce1d4e83f69f7dddc4 (patch) | |
tree | 8c6bd245ef72cb15d5606c4ee4213a8ccc98219c /examples | |
parent | dad346014aa7194cbb1ff47ea0bec2476ea6cb46 (diff) | |
download | ATCD-1ace327b51954c5ea9a4a8ce1d4e83f69f7dddc4.tar.gz |
ChangeLogTag: Fri May 9 08:45:12 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Reactor/WFMO_Reactor/Handle_Close.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/Reactor/WFMO_Reactor/Handle_Close.cpp b/examples/Reactor/WFMO_Reactor/Handle_Close.cpp index 2f527ea3aed..544e413f6b0 100644 --- a/examples/Reactor/WFMO_Reactor/Handle_Close.cpp +++ b/examples/Reactor/WFMO_Reactor/Handle_Close.cpp @@ -49,10 +49,10 @@ write_to_pipe (ACE_Pipe &pipe) char *data = "hello"; size_t len = ACE_OS::strlen (data); - int result = ACE::send (pipe.write_handle (), - data, - len); - ACE_ASSERT (result == len); + ssize_t result = ACE::send (pipe.write_handle (), + data, + len); + ACE_ASSERT ((size_t)result == len); } // Simple handler class |