summaryrefslogtreecommitdiff
path: root/examples/ASX
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-13 01:41:47 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-13 01:41:47 +0000
commit46a5315acb6f7d841d17752d7a92689e13a03242 (patch)
tree752a250077aed8d0fa6ae81dc43a693159d55a28 /examples/ASX
parenta01fe75f49f099e7879674086bdbbd23cb5a2b0a (diff)
downloadATCD-46a5315acb6f7d841d17752d7a92689e13a03242.tar.gz
(make_svc_handler): added return statement
Diffstat (limited to 'examples/ASX')
-rw-r--r--examples/ASX/Event_Server/Event_Server/Peer_Router.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp b/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
index a390b916b43..a281735a35b 100644
--- a/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
+++ b/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
@@ -136,6 +136,7 @@ int
Peer_Router_Context::make_svc_handler (Peer_Handler *&sh)
{
ACE_NEW_RETURN (sh, Peer_Handler (this), -1);
+ return 0;
}
Peer_Handler::Peer_Handler (Peer_Router_Context *prc)