summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp
index 799f234f402..7eeeaf02ce8 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp
@@ -10,15 +10,15 @@ TAO_EC_Event_Channel (const TAO_EC_Event_Channel_Attributes& attr,
int own_factory)
: TAO_EC_Event_Channel_Base (attr, factory, own_factory)
{
- if (this->factory () == 0)
+ if (this->factory () == nullptr)
{
this->factory (
ACE_Dynamic_Service<TAO_EC_Factory>::instance ("EC_Factory"),
0);
- if (this->factory () == 0)
+ if (this->factory () == nullptr)
{
- TAO_EC_Factory *f = 0;
+ TAO_EC_Factory *f = nullptr;
ACE_NEW (f,
TAO_EC_Default_Factory);
this->factory (f, 1);