summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-05-09 13:46:22 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-05-09 13:46:22 +0000
commit1ace327b51954c5ea9a4a8ce1d4e83f69f7dddc4 (patch)
tree8c6bd245ef72cb15d5606c4ee4213a8ccc98219c
parentdad346014aa7194cbb1ff47ea0bec2476ea6cb46 (diff)
downloadATCD-1ace327b51954c5ea9a4a8ce1d4e83f69f7dddc4.tar.gz
ChangeLogTag: Fri May 9 08:45:12 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog6
-rw-r--r--examples/Reactor/WFMO_Reactor/Handle_Close.cpp8
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 0cced8b9f69..3d4fdec193a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri May 9 08:45:12 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * examples/Reactor/WFMO_Reactor/Handle_Close.cpp:
+
+ Fixed a build warning from Borland.
+
Fri May 9 08:01:59 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/README:
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