summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-04-22 13:05:04 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-04-22 13:05:04 +0000
commit20849e79d316c8c2b6076402c46a08a1824e1638 (patch)
treee696e37e1ef54df8982df1713a02f732541bfe5b
parentda48fa77690fd91b7fddd3078cf904aebec3bb27 (diff)
downloadATCD-20849e79d316c8c2b6076402c46a08a1824e1638.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98a6
-rw-r--r--ace/Msg_WFMO_Reactor.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a
index c3d966acb72..a54b93d769c 100644
--- a/ChangeLog-98a
+++ b/ChangeLog-98a
@@ -1,3 +1,9 @@
+Wed Apr 22 08:00:47 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Msg_WFMO_Reactor.cpp (wait_for_multiple_events): Fixed a
+ missing semi-colon. Thanks to Jorn Jensen <jornj@funcom.com>
+ for reporting this.
+
Tue Apr 21 18:38:22 1998 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/ace_ce_dll.dsp: Removing a deprecated /windowsce:noconvert
diff --git a/ace/Msg_WFMO_Reactor.cpp b/ace/Msg_WFMO_Reactor.cpp
index 7fe67de05c5..b3874764255 100644
--- a/ace/Msg_WFMO_Reactor.cpp
+++ b/ace/Msg_WFMO_Reactor.cpp
@@ -49,7 +49,7 @@ ACE_Msg_WFMO_Reactor::wait_for_multiple_events (int timeout,
this->handler_rep_.handles (),
FALSE,
timeout,
- QS_ALLINPUT)
+ QS_ALLINPUT);
#endif /* (_WIN32_WINNT) && (_WIN32_WINNT >= 0x0400) */
}