From a38e2bba6209b338efa410ac762bb5533d245e5e Mon Sep 17 00:00:00 2001 From: bala Date: Fri, 29 Aug 2003 14:54:48 +0000 Subject: ChangeLogTag:Fri Aug 29 09:49:57 2003 Balachandran Natarajan --- TAO/ChangeLog | 11 +++++++++++ TAO/tests/Codec/client.cpp | 8 +++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/TAO/ChangeLog b/TAO/ChangeLog index a539ad94edc..641325216a6 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,14 @@ +Fri Aug 29 09:49:57 2003 Balachandran Natarajan + + * tests/Codec/client.cpp: Cosmetic fix. Removed the word "warning" + from a debug statement. The data structure that is used for + encoding and decoding is always aligned on an 8 byte + boundary. There was a time when we used a data structure that + was aligned on a 4 byte boundary and after encoding we used to + have data aligned on a 8 byte boundary. This problem was fixed + long back, but the warning word was not removed. This checkin + fixes that. + Fri Aug 29 08:24:17 2003 Jeff Parsons * tao/RTCORBA/RT_Protocols_Hooks.cpp: diff --git a/TAO/tests/Codec/client.cpp b/TAO/tests/Codec/client.cpp index c46dbe5f905..9bbc3c58b0b 100644 --- a/TAO/tests/Codec/client.cpp +++ b/TAO/tests/Codec/client.cpp @@ -122,11 +122,9 @@ main (int argc, char *argv[]) if ((ACE_reinterpret_cast (ptrdiff_t, encoded_data->get_buffer ()) % ACE_CDR::MAX_ALIGNMENT) == 0) - ACE_DEBUG ((LM_WARNING, - "\n" - "WARNING: Data to be decoded is already aligned " - "on MAX_ALIGNMENT.\n\n")); - + ACE_DEBUG ((LM_DEBUG, + "\nData for decoding are already aligned" + "on MAX_ALIGNMENT.\n\n")); // Extract the data from the octet sequence. decoded_data = codec->decode (encoded_data.in () ACE_ENV_ARG_PARAMETER); -- cgit v1.2.1