summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2015-02-10 17:42:29 -0500
committerSteve Huston <shuston@riverace.com>2015-02-10 17:50:34 -0500
commit6bb9f2ac31d84154852781556b1074575b3fe4f0 (patch)
tree82371b0ae949044ecf487f0b9e60f12a8f5f557c
parent0fa1e3e9c359192b09b3fe4d9ed51d5c365956b9 (diff)
downloadATCD-6bb9f2ac31d84154852781556b1074575b3fe4f0.tar.gz
Fix typo on feature chack ACE_DISABLE_MKTEMP.
-rw-r--r--ACE/ace/OS_NS_stdlib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/OS_NS_stdlib.cpp b/ACE/ace/OS_NS_stdlib.cpp
index cd47f1d63ab..5ca8f365ace 100644
--- a/ACE/ace/OS_NS_stdlib.cpp
+++ b/ACE/ace/OS_NS_stdlib.cpp
@@ -277,7 +277,7 @@ ACE_OS::malloc (size_t nbytes)
return ACE_MALLOC_FUNC (nbytes);
}
-#if defined (ACE_LACKS_MKTEMP) && !defined (ACE_DISBALE_MKTEMP)
+#if defined (ACE_LACKS_MKTEMP) && !defined (ACE_DISABLE_MKTEMP)
ACE_TCHAR *
ACE_OS::mktemp (ACE_TCHAR *s)
{