summaryrefslogtreecommitdiff
path: root/tests/DLL_Test.cpp
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-07-16 19:00:39 +0000
committerSteve Huston <shuston@riverace.com>2002-07-16 19:00:39 +0000
commit0be5195b7f88ac879aa52e97867558dfd4312b27 (patch)
tree57c08e6dfa68c19ba8e487f511b486b385d031d7 /tests/DLL_Test.cpp
parent85b45e42fac58396ea1f282d72f93f3c8965380f (diff)
downloadATCD-0be5195b7f88ac879aa52e97867558dfd4312b27.tar.gz
ChangeLogTag:Tue Jul 16 14:19:37 2002 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'tests/DLL_Test.cpp')
-rw-r--r--tests/DLL_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/DLL_Test.cpp b/tests/DLL_Test.cpp
index 549842e01e4..526ff3d093d 100644
--- a/tests/DLL_Test.cpp
+++ b/tests/DLL_Test.cpp
@@ -92,7 +92,7 @@ int basic_test (ACE_DLL &dll)
foo = dll.symbol (ACE_TEXT ("get_hello"));
// Cast the void* to long first.
- long tmp = ACE_reinterpret_cast (long, foo);
+ ptrdiff_t tmp = ACE_reinterpret_cast (ptrdiff_t, foo);
Hello_Factory factory = ACE_reinterpret_cast (Hello_Factory, tmp);
if (factory == 0)
ACE_ERROR_RETURN ((LM_ERROR,