summaryrefslogtreecommitdiff
path: root/ace/POSIX_Asynch_IO.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-02-17 23:46:36 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-02-17 23:46:36 +0000
commit7d150cdda574e51b8eaea4f50f0ffc98e1b143a9 (patch)
tree4ac1e573ed9057ea4d30eea058145b5ec1294beb /ace/POSIX_Asynch_IO.cpp
parent1476d1f7dae70cff8d9707e876cf03638244d490 (diff)
downloadATCD-7d150cdda574e51b8eaea4f50f0ffc98e1b143a9.tar.gz
ChangeLogTag:Sat Feb 17 13:26:17 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
Diffstat (limited to 'ace/POSIX_Asynch_IO.cpp')
-rw-r--r--ace/POSIX_Asynch_IO.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/POSIX_Asynch_IO.cpp b/ace/POSIX_Asynch_IO.cpp
index 53251fb94c3..b94b2037462 100644
--- a/ace/POSIX_Asynch_IO.cpp
+++ b/ace/POSIX_Asynch_IO.cpp
@@ -2119,7 +2119,7 @@ ACE_POSIX_Asynch_Accept::close (int flg_notify)
}
void *
-ACE_POSIX_Asynch_Accept::thread_function (void* arg_reactor)
+ACE_POSIX_Asynch_Accept::thread_function (void *arg_reactor)
{
// Retrieve the reactor pointer from the argument.
ACE_Reactor *reactor = ACE_reinterpret_cast (ACE_Reactor *,
@@ -2137,7 +2137,7 @@ ACE_POSIX_Asynch_Accept::thread_function (void* arg_reactor)
while (reactor->reactor_event_loop_done () == 0)
if (reactor->handle_events () == -1)
- return -1;
+ return ACE_reinterpret_cast (void *, -1);
return 0;
}