summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-07-18 16:27:20 +0200
committerGitHub <noreply@github.com>2022-07-18 16:27:20 +0200
commitbd92596bbc63635a2ed2131322e6c659a5420586 (patch)
tree924f13592a643ea3f847b7a8037be6e211629b0d /TAO
parentb9e4a9a92a619f5eba4bbf0dce154edb005dbab8 (diff)
parent8f9a9f304ba52f05f9a06c2afa16ea3f4ca0b097 (diff)
downloadATCD-bd92596bbc63635a2ed2131322e6c659a5420586.tar.gz
Merge pull request #1887 from jwillemsen/jwi-codesetregistry
Minor change for codeset registry generation and removed old Id tags
Diffstat (limited to 'TAO')
-rw-r--r--TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp1
-rw-r--r--TAO/utils/catior/Catior_i.cpp4
2 files changed, 2 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp b/TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp
index 8d1618b975b..7c990e8f968 100644
--- a/TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp
+++ b/TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp
@@ -235,7 +235,6 @@ ACE_Scheduler_Factory::server ()
}
static char header[] =
-"// $Id $\n\n"
"// This file was automatically generated by the Scheduler_Factory.\n"
"// Before editing the file please consider generating it again.\n"
"\n"
diff --git a/TAO/utils/catior/Catior_i.cpp b/TAO/utils/catior/Catior_i.cpp
index 917d965291b..344b85c517f 100644
--- a/TAO/utils/catior/Catior_i.cpp
+++ b/TAO/utils/catior/Catior_i.cpp
@@ -1100,7 +1100,7 @@ Catior_i::cat_codeset_info (TAO_InputCDR& cdr)
"for char.\n"),
false);
- ACE_OS::snprintf (buf, bufsize, "\tNumber of CCS for char %u\n", c_ccslen);
+ ACE_OS::snprintf (buf, bufsize, "\tNumber of CCS for char: %u\n", c_ccslen);
buffer_ += buf;
if (c_ccslen)
@@ -1131,7 +1131,7 @@ Catior_i::cat_codeset_info (TAO_InputCDR& cdr)
"for wchar.\n"),
false);
- ACE_OS::snprintf (buf, bufsize, "\tNumber of CCS for wchar %u\n", w_ccslen);
+ ACE_OS::snprintf (buf, bufsize, "\tNumber of CCS for wchar: %u\n", w_ccslen);
buffer_ += buf;
if (w_ccslen)