summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--ace/ACE.cpp2
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b9ef5b6300..c7df489dfa0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Aug 17 10:03:00 UTC 2004 Martin Corino <mcorino@remedy.nl>
+
+ * ace/ACE.cpp:
+
+ Added ACE_UNUSED_ARG() to is_sock_error() for non-WIN32
+ builds.
+
Tue Aug 17 09:43:00 UTC 2004 Martin Corino <mcorino@remedy.nl>
* bin/msvc_static_order.lst:
diff --git a/ace/ACE.cpp b/ace/ACE.cpp
index 3d302048457..a24394283e3 100644
--- a/ace/ACE.cpp
+++ b/ace/ACE.cpp
@@ -3408,6 +3408,8 @@ ACE::is_sock_error (int error)
case WSAEISCONN:
return true;
}
+#else
+ ACE_UNUSED_ARG (error);
#endif /* ACE_WIN32 */
return false;
}