summaryrefslogtreecommitdiff
path: root/ace/DEV_Addr.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/DEV_Addr.i')
-rw-r--r--ace/DEV_Addr.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/DEV_Addr.i b/ace/DEV_Addr.i
index 3a7ad769e24..7ada0c3dd18 100644
--- a/ace/DEV_Addr.i
+++ b/ace/DEV_Addr.i
@@ -38,7 +38,7 @@ ACE_DEV_Addr::get_addr (void) const
ACE_INLINE int
ACE_DEV_Addr::operator == (const ACE_DEV_Addr &sap) const
{
- ACE_TRACE ("ACE_DEV_Addr::operator ==");
+ ACE_TRACE ("ACE_DEV_Addr::operator=");
return ACE_OS::strcmp (this->devname_, sap.devname_) == 0;
}
@@ -48,7 +48,7 @@ ACE_DEV_Addr::operator == (const ACE_DEV_Addr &sap) const
ACE_INLINE int
ACE_DEV_Addr::operator != (const ACE_DEV_Addr &sap) const
{
- ACE_TRACE ("ACE_DEV_Addr::operator !=");
+ ACE_TRACE ("ACE_DEV_Addr::operator!=");
return !((*this) == sap); // This is lazy, of course... ;-).
}