summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-10-14 05:30:35 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-10-14 05:30:35 +0000
commit848dfd868cf41b6eb909f7356f905be2b02f4a32 (patch)
treefcb510765e9d89b2fc2428838cf463ba90228d62
parentf9e6b37def69289e176374c26415c800337abef9 (diff)
downloadATCD-848dfd868cf41b6eb909f7356f905be2b02f4a32.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-97b6
-rw-r--r--examples/Reactor/FIFO/client.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog-97b b/ChangeLog-97b
index 3a26afb5fe6..0d1469df6ed 100644
--- a/ChangeLog-97b
+++ b/ChangeLog-97b
@@ -1,3 +1,9 @@
+Tue Oct 14 00:07:37 1997 Douglas C. Schmidt <schmidt@flamenco.cs.wustl.edu>
+
+ * examples/Reactor/FIFO/client.cpp (main): Fixed the call to
+ fifo_sender.send () so that it passes msg rather than &msg.
+ Thanks to Sandro Doro <doros@aureus> for reporting this.
+
Mon Oct 13 23:07:15 1997 Douglas C. Schmidt <schmidt@flamenco.cs.wustl.edu>
* tests/Process_Strategy_Test.cpp (handle_signal): Removed the
diff --git a/examples/Reactor/FIFO/client.cpp b/examples/Reactor/FIFO/client.cpp
index 5956b5b13b8..d323a11126a 100644
--- a/examples/Reactor/FIFO/client.cpp
+++ b/examples/Reactor/FIFO/client.cpp
@@ -10,7 +10,7 @@ main (int, char *[])
O_WRONLY | O_CREAT,
ACE_DEFAULT_FILE_PERMS);
- if (fifo_sender.send (&msg) == -1)
+ if (fifo_sender.send (msg) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "send error for fifo"), -1);
else
return 0;