summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Notify_Service/Notify_Server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/Notify_Service/Notify_Server.cpp')
-rw-r--r--TAO/orbsvcs/Notify_Service/Notify_Server.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/Notify_Service/Notify_Server.cpp b/TAO/orbsvcs/Notify_Service/Notify_Server.cpp
index 3b413207337..ecf14ca8a25 100644
--- a/TAO/orbsvcs/Notify_Service/Notify_Server.cpp
+++ b/TAO/orbsvcs/Notify_Service/Notify_Server.cpp
@@ -22,7 +22,7 @@ main (int argc, char *argv[])
ACE_DECLARE_NEW_CORBA_ENV;
- if (notify_service.init (argc, argv TAO_ENV_ARG_PARAMETER) == -1)
+ if (notify_service.init (argc, argv ACE_ENV_ARG_PARAMETER) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
"Failed to start the Notification Service.\n"),
1);
@@ -30,12 +30,12 @@ main (int argc, char *argv[])
ACE_TRY
{
notify_service.run ();
- notify_service.shutdown (TAO_ENV_SINGLE_ARG_PARAMETER);
+ notify_service.shutdown (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
ACE_CATCHANY
{
- notify_service.shutdown (TAO_ENV_SINGLE_ARG_PARAMETER);
+ notify_service.shutdown (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
"Failed to start the Notification Service\n");
return 1;