summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-09 20:00:39 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-09 20:00:39 +0000
commit40cb1ee9e8988ad827332ada601b28471affde01 (patch)
tree2c33b3f4b70c1deb2a02bbd959dd0720f26a87d1
parenta083362e6ff7ecf3eff26c9358afef8c4b5b19bd (diff)
downloadATCD-40cb1ee9e8988ad827332ada601b28471affde01.tar.gz
ChangeLogTag:Sun Dec 9 08:54:38 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
-rw-r--r--tests/MEM_Stream_Test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/MEM_Stream_Test.cpp b/tests/MEM_Stream_Test.cpp
index 52b8bf6ed6c..7bc16809770 100644
--- a/tests/MEM_Stream_Test.cpp
+++ b/tests/MEM_Stream_Test.cpp
@@ -133,7 +133,7 @@ Echo_Handler::handle_close (ACE_HANDLE,
ACE_Reactor_Mask mask)
{
// Reduce count.
- *Waiting::instance ()--;
+ (*Waiting::instance ())--;
if (client_strategy != ACE_MEM_IO::Reactive)
this->reactor ()->remove_handler (this,
@@ -359,7 +359,7 @@ test_concurrent (const ACE_TCHAR *prog,
if (ACE_Thread_Manager::instance ()->spawn_n (NUMBER_OF_MT_CONNECTIONS,
connect_client,
&sport) == -1)
- ACE_ERROR ((LM_ERROR, ACE_TEXT (%p\n"), ACE_TEXT ("spawn_n()")));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("spawn_n()")));
#else
ACE_Process_Options opts;
opts.command_line (ACE_TEXT ("%s -p%d -m"), prog, sport);