summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-08-29 14:54:48 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-08-29 14:54:48 +0000
commita38e2bba6209b338efa410ac762bb5533d245e5e (patch)
tree000555901987d82d52105dc08bda86d2d140a15f
parent6b65b5b80c0c36e92c42fd3fbba7a7de8f2173f9 (diff)
downloadATCD-a38e2bba6209b338efa410ac762bb5533d245e5e.tar.gz
ChangeLogTag:Fri Aug 29 09:49:57 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog11
-rw-r--r--TAO/tests/Codec/client.cpp8
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 <bala@dre.vanderbilt.edu>
+
+ * 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 <j.parsons@vanderbilt.edu>
* 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);