summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-16 22:26:28 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-16 22:26:28 +0000
commit1de5f9a29dc1d8465108b1ced4b09de35f2cf807 (patch)
treebbb6b4ea210ef528f595ff7299e300a3c93c5c35
parent025a6437be7d55ac98e65db28098840fea957322 (diff)
downloadATCD-1de5f9a29dc1d8465108b1ced4b09de35f2cf807.tar.gz
.
-rw-r--r--ace/Malloc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Malloc.cpp b/ace/Malloc.cpp
index fd4ab91536a..6989ce2a4f6 100644
--- a/ace/Malloc.cpp
+++ b/ace/Malloc.cpp
@@ -47,7 +47,7 @@ ACE_Name_Node::ACE_Name_Node (const char *name,
next_ (next)
{
ACE_TRACE ("ACE_Name_Node::ACE_Name_Node");
- ACE_OS::strcpy (this->name_.addr (), name);
+ ACE_OS::strcpy (ACE_POINTER_CAST (this->name_), name);
}
ACE_Name_Node::ACE_Name_Node (const ACE_Name_Node &)
@@ -59,7 +59,7 @@ ACE_Name_Node::ACE_Name_Node (const ACE_Name_Node &)
const char *
ACE_Name_Node::name (void) const
{
- return this->name_.addr ();
+ return ACE_POINTER_CAST (this->name_);
}
void