summaryrefslogtreecommitdiff
path: root/tests
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
commit354de3e2f49bc9d3f3c15efe3614fbde3d9e4116 (patch)
tree57c08e6dfa68c19ba8e487f511b486b385d031d7 /tests
parent4717d9ea7885a2b297eb5fb9cf828a296b2a3e3d (diff)
downloadATCD-354de3e2f49bc9d3f3c15efe3614fbde3d9e4116.tar.gz
ChangeLogTag:Tue Jul 16 14:19:37 2002 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'tests')
-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,