diff options
author | Steve Huston <shuston@riverace.com> | 1999-06-21 13:40:45 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1999-06-21 13:40:45 +0000 |
commit | 8b6f597ca003cfd7ff86d1f20270203e6e1d99a9 (patch) | |
tree | 978bc99c9b1014aa0aaee95639fa3be1625107a9 /examples | |
parent | 51685789a8e711e652c6b1b3bcf6b4576f28d38b (diff) | |
download | ATCD-8b6f597ca003cfd7ff86d1f20270203e6e1d99a9.tar.gz |
Corrected the correction to signed/unsigned mismatch in handle_input.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Connection/misc/Connection_Handler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Connection/misc/Connection_Handler.cpp b/examples/Connection/misc/Connection_Handler.cpp index af2efb2ed5f..861c45bb088 100644 --- a/examples/Connection/misc/Connection_Handler.cpp +++ b/examples/Connection/misc/Connection_Handler.cpp @@ -141,7 +141,7 @@ Connection_Handler::handle_input (ACE_HANDLE) this->get_handle ()), -1); default: - if (((unsigned int) buf[0]) == EOF) + if (((int) buf[0]) == (int) EOF) ACE_ERROR_RETURN ((LM_ERROR, "(%P|%t) closing log daemon (fd = %d)\n", this->get_handle ()), |