diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-16 19:09:13 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-16 19:09:13 +0000 |
commit | 260d65ef50064a58ba62796fe6b2bfdc9a2a14b9 (patch) | |
tree | 61dca9bced53163681708c5b8414b6633e2202ad /ace/High_Res_Timer.cpp | |
parent | 04563ba0e365fb1b85968fc14759a50c556840fc (diff) | |
download | ATCD-260d65ef50064a58ba62796fe6b2bfdc9a2a14b9.tar.gz |
CE fixes.
Diffstat (limited to 'ace/High_Res_Timer.cpp')
-rw-r--r-- | ace/High_Res_Timer.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ace/High_Res_Timer.cpp b/ace/High_Res_Timer.cpp index c8e70158554..9791601f274 100644 --- a/ace/High_Res_Timer.cpp +++ b/ace/High_Res_Timer.cpp @@ -195,20 +195,20 @@ ACE_High_Res_Timer::dump (void) const global_scale_factor ())); #if defined (ACE_LACKS_LONGLONG_T) ACE_DEBUG ((LM_DEBUG, - ASYS_TEXT (":\nstart_.hi (): %8x; start_.lo (): %8x;\n" - "end_.hi (): %8x; end_.lo (): %8x;\n" - "total_.hi (): %8x; total_.lo (): %8x;\n" - "start_incr_.hi () %8x; start_incr_.lo (): %8x;\n"), + ASYS_TEXT (":\nstart_.hi (): %8x; start_.lo (): %8x;\n") + ASYS_TEXT ("end_.hi (): %8x; end_.lo (): %8x;\n") + ASYS_TEXT ("total_.hi (): %8x; total_.lo (): %8x;\n") + ASYS_TEXT ("start_incr_.hi () %8x; start_incr_.lo (): %8x;\n"), start_.hi (), start_.lo (), end_.hi (), end_.lo (), total_.hi (), total_.lo (), start_incr_.hi (), start_incr_.lo ())); #else /* ! ACE_LACKS_LONGLONG_T */ ACE_DEBUG ((LM_DEBUG, - ASYS_TEXT (":\nstart_.hi (): %8x; start_.lo (): %8x;\n" - "end_.hi (): %8x; end_.lo (): %8x;\n" - "total_.hi (): %8x; total_.lo (): %8x;\n" - "start_incr_.hi () %8x; start_incr_.lo (): %8x;\n"), + ASYS_TEXT (":\nstart_.hi (): %8x; start_.lo (): %8x;\n") + ASYS_TEXT ("end_.hi (): %8x; end_.lo (): %8x;\n") + ASYS_TEXT ("total_.hi (): %8x; total_.lo (): %8x;\n") + ASYS_TEXT ("start_incr_.hi () %8x; start_incr_.lo (): %8x;\n"), ACE_CU64_TO_CU32 (start_ >> 32), ACE_CU64_TO_CU32 (start_ & 0xfffffffful), ACE_CU64_TO_CU32 (end_ >> 32), |