summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ACE/ChangeLog4
-rw-r--r--ACE/ace/OS_NS_stdlib.inl2
2 files changed, 5 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index be8a35f6a02..f73f8c703ed 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,7 @@
+Wed Oct 25 15:05:42 UTC 2006 Steve Huston <shuston@riverace.com>
+
+ * ace/OS_NS_stdlib.inl (atop): s/intptr/intptr_t/ in ACE_WIN64 case.
+
Wed Oct 25 09:47:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SOCK_Dgram.cpp:
diff --git a/ACE/ace/OS_NS_stdlib.inl b/ACE/ace/OS_NS_stdlib.inl
index 990b1895ece..4604b5d2005 100644
--- a/ACE/ace/OS_NS_stdlib.inl
+++ b/ACE/ace/OS_NS_stdlib.inl
@@ -91,7 +91,7 @@ ACE_INLINE void *
ACE_OS::atop (const wchar_t *s)
{
# if defined (ACE_WIN64)
- intptr ip = ::_wtoi64 (s);
+ intptr_t ip = ::_wtoi64 (s);
# else
intptr_t ip = ACE_OS::atoi (s);
# endif /* ACE_WIN64 */