diff options
Diffstat (limited to 'ACE/tests')
-rw-r--r-- | ACE/tests/Basic_Types_Test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/tests/Basic_Types_Test.cpp b/ACE/tests/Basic_Types_Test.cpp index d9db03d54b6..11bf1a55fe0 100644 --- a/ACE/tests/Basic_Types_Test.cpp +++ b/ACE/tests/Basic_Types_Test.cpp @@ -33,8 +33,8 @@ using a_function_pointer = void *(*)(void *); static -u_int -check (const ACE_TCHAR *message, u_int i, u_int j) +ACE_UINT32 +check (const ACE_TCHAR* message, ACE_UINT32 i, ACE_UINT32 j) { if (i == j) { @@ -50,8 +50,8 @@ check (const ACE_TCHAR *message, u_int i, u_int j) } static -u_int -check64 (const ACE_TCHAR* message, u_int64 i, u_int64 j) +ACE_UINT32 +check64 (const ACE_TCHAR* message, ACE_UINT64 i, ACE_UINT64 j) { if (i == j) { |