summaryrefslogtreecommitdiff
path: root/tests/DLL_Test.cpp
diff options
context:
space:
mode:
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,