summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-11 14:09:26 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-11 14:09:26 +0000
commit6247bc09460b2155d62d534e2db08b31e9fa67f5 (patch)
tree4fac38493575f0382caf8295072e6465f2378760
parent03476b89478b6fe06aaea9b7edc3a7077b63e5b4 (diff)
downloadATCD-6247bc09460b2155d62d534e2db08b31e9fa67f5.tar.gz
(get_host_name): added ACE_UNUSED_ARG (len); for VxWorks only.
-rw-r--r--ace/INET_Addr.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ace/INET_Addr.cpp b/ace/INET_Addr.cpp
index 6c51b63395f..fd058485a2a 100644
--- a/ace/INET_Addr.cpp
+++ b/ace/INET_Addr.cpp
@@ -356,6 +356,7 @@ ACE_INET_Addr::get_host_name (char hostname[], size_t len) const
ACE_TRACE ("ACE_INET_Addr::get_host_name");
#if defined (VXWORKS)
+ ACE_UNUSED_ARG (len);
int error = ::hostGetByAddr ((int) this->inet_addr_.sin_addr.s_addr,
hostname);
if (error == OK)