summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-11 10:19:34 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-11 10:19:34 +0000
commit693331ddbaf5ffd477137d5d0c9cdd3e3edd047a (patch)
tree0c3c80bf5f439f04b95a88fc76af694e3f71d6ad /ace
parentc906ae24337f0993e581402da74cbd64370f84fe (diff)
downloadATCD-693331ddbaf5ffd477137d5d0c9cdd3e3edd047a.tar.gz
Made CE friendly
Diffstat (limited to 'ace')
-rw-r--r--ace/Hash_Map_Manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Hash_Map_Manager.cpp b/ace/Hash_Map_Manager.cpp
index 7847bee461c..c47e324be29 100644
--- a/ace/Hash_Map_Manager.cpp
+++ b/ace/Hash_Map_Manager.cpp
@@ -121,7 +121,7 @@ ACE_Hash_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::ACE_Hash_Map_Manager (size_t siz
cur_size_ (0)
{
if (this->open (size, alloc) == -1)
- ACE_ERROR ((LM_ERROR, "ACE_Hash_Map_Manager\n"));
+ ACE_ERROR ((LM_ERROR, ASYS_TEXT ("ACE_Hash_Map_Manager\n")));
}
template <class EXT_ID, class INT_ID, class ACE_LOCK>
@@ -132,7 +132,7 @@ ACE_Hash_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::ACE_Hash_Map_Manager (ACE_Alloca
cur_size_ (0)
{
if (this->open (ACE_DEFAULT_MAP_SIZE, alloc) == -1)
- ACE_ERROR ((LM_ERROR, "ACE_Hash_Map_Manager\n"));
+ ACE_ERROR ((LM_ERROR, ASYS_TEXT ("ACE_Hash_Map_Manager\n")));
}
template <class EXT_ID, class INT_ID, class ACE_LOCK> int