diff options
Diffstat (limited to 'ace/WIN32_Proactor.cpp')
-rw-r--r-- | ace/WIN32_Proactor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/WIN32_Proactor.cpp b/ace/WIN32_Proactor.cpp index f27119237e0..4348a1ce7ba 100644 --- a/ace/WIN32_Proactor.cpp +++ b/ace/WIN32_Proactor.cpp @@ -120,7 +120,7 @@ ACE_WIN32_Proactor::register_handle (ACE_HANDLE handle, const void *completion_key) { #if defined (ACE_WIN64) - ULONG_PTR comp_key (ACE_static_cast (ULONG_PTR, completion_key)); + ULONG_PTR comp_key (ACE_reinterepret_cast (ULONG_PTR, completion_key)); #else ULONG comp_key (ACE_reinterpret_cast (ULONG, completion_key)); #endif /* ACE_WIN64 */ |