summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-12-12 20:09:45 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2022-12-12 20:09:45 +0100
commita49c9dee83b0d6029834126e8fb39cf9b04faba5 (patch)
treecde0f89ce2d2b06201df0367a9c4b63328be4ff0
parent780421e6430ae7d5682b0f505392c65dc1222d86 (diff)
downloadATCD-a49c9dee83b0d6029834126e8fb39cf9b04faba5.tar.gz
Layout change
* TAO/orbsvcs/orbsvcs/PortableGroup/PG_Group_Factory.cpp:
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Group_Factory.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Group_Factory.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Group_Factory.cpp
index f7eb0d328f4..dfe9833f702 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Group_Factory.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Group_Factory.cpp
@@ -241,9 +241,7 @@ int TAO::PG_Group_Factory::find_group_with_name (const char* target_group_name,
// If the group has the group name in the property
//
const char* a_group_name = a_group->get_name ();
- if (a_group_name != 0 &&
- ACE_OS::strcmp (target_group_name,
- a_group_name) == 0)
+ if (a_group_name != 0 && ACE_OS::strcmp (target_group_name, a_group_name) == 0)
{ // This is the group we were looking for
group_target = a_group;
result = 1;