summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ace/OS_NS_string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/OS_NS_string.cpp b/ace/OS_NS_string.cpp
index d2182415a74..564c5ade02d 100644
--- a/ace/OS_NS_string.cpp
+++ b/ace/OS_NS_string.cpp
@@ -97,7 +97,7 @@ ACE_OS::strdup (const char *s)
return ACE_OS::strcpy (t, s);
#else
- return ::strdup (s);
+ return ACE_STD_NAMESPACE::strdup (s);
#endif /* ACE_HAS_STRDUP_EMULATION */
}