diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-02 06:51:52 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-02 06:51:52 +0000 |
commit | fc487e318bb1e226cdaa4784fb00f6c3e3f05bb3 (patch) | |
tree | 495a9d426df55837077d5e832a16b4e1b6579575 /ace/Log_Record.cpp | |
parent | e7c29932ee4d1d6c9c1c13740ecf370cfb6f09b5 (diff) | |
download | ATCD-fc487e318bb1e226cdaa4784fb00f6c3e3f05bb3.tar.gz |
ChangeLogTag:Wed Mar 1 22:39:04 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Log_Record.cpp')
-rw-r--r-- | ace/Log_Record.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Log_Record.cpp b/ace/Log_Record.cpp index 22580144997..c129b751d17 100644 --- a/ace/Log_Record.cpp +++ b/ace/Log_Record.cpp @@ -104,8 +104,8 @@ ACE_Log_Record::round_up (void) + (sizeof (ASYS_TCHAR) * ((ACE_OS::strlen (this->msg_data_) + 1))); // Round up to the alignment. - this->length_ = 1 + ((len + ACE_Log_Record::ALIGN_WORDB - 1) - & ~(ACE_Log_Record::ALIGN_WORDB - 1)); + this->length_ = ((len + ACE_Log_Record::ALIGN_WORDB - 1) + & ~(ACE_Log_Record::ALIGN_WORDB - 1)); } ACE_Log_Record::ACE_Log_Record (void) |