summaryrefslogtreecommitdiff
path: root/TAO/tao/Utils/Server_Main.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-02-25 13:27:03 +0100
committerGitHub <noreply@github.com>2021-02-25 13:27:03 +0100
commitfdf9fe05d6a4499ced8b55b52f179275ce0c90b0 (patch)
treeb63469e57597713738afea9d42ef0e78fcb9d7d4 /TAO/tao/Utils/Server_Main.cpp
parente4bcaf22324492a0d784890cd9ca86b4a707e68f (diff)
parentab938af466a77a9992d95da9fc832ff50444255f (diff)
downloadATCD-fdf9fe05d6a4499ced8b55b52f179275ce0c90b0.tar.gz
Merge pull request #1440 from jwillemsen/jw-cleanupvc6
Cleanup for vc6, use nullptr, remove redundant void, layout changes
Diffstat (limited to 'TAO/tao/Utils/Server_Main.cpp')
-rw-r--r--TAO/tao/Utils/Server_Main.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/TAO/tao/Utils/Server_Main.cpp b/TAO/tao/Utils/Server_Main.cpp
index e9fc435fd4b..634b61c4d5d 100644
--- a/TAO/tao/Utils/Server_Main.cpp
+++ b/TAO/tao/Utils/Server_Main.cpp
@@ -63,8 +63,7 @@ TAO::Utils::Server_Main<SERVANT>::run (int argc, ACE_TCHAR *argv[])
if (result == 0)
{
TAOLIB_ERROR ((LM_INFO,
- "%T %C (%P|%t) Ready %C\n", name_, servant.identity ()
- ));
+ "%T %C (%P|%t) Ready %C\n", name_, servant.identity ()));
//////////////////////////////////
// Run the event loop for the ORB.
@@ -87,22 +86,19 @@ TAO::Utils::Server_Main<SERVANT>::run (int argc, ACE_TCHAR *argv[])
TAOLIB_ERROR ((LM_INFO,
"%T %C (%P|%t) Terminated normally. %C\n",
name_,
- servant.identity ()
- ));
+ servant.identity ()));
}
else
{
TAOLIB_ERROR ((LM_ERROR,
- "%T %C (%P|%t) Registration failed: %m\n", name_
- ));
+ "%T %C (%P|%t) Registration failed: %m\n", name_));
result = -1;
}
}
else
{
TAOLIB_ERROR ((LM_ERROR,
- "%T %C (%P|%t) ORB manager init failed\n", name_
- ));
+ "%T %C (%P|%t) ORB manager init failed\n", name_));
result = -1;
}
}