summaryrefslogtreecommitdiff
path: root/ACE/ace/Codecs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Codecs.cpp')
-rw-r--r--ACE/ace/Codecs.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/ACE/ace/Codecs.cpp b/ACE/ace/Codecs.cpp
index 505c5fc9916..19718c03aff 100644
--- a/ACE/ace/Codecs.cpp
+++ b/ACE/ace/Codecs.cpp
@@ -1,12 +1,10 @@
+// $Id$
+
#include "ace/Codecs.h"
#include "ace/Log_Msg.h"
#include "ace/OS_Memory.h"
#include "ace/OS_NS_ctype.h"
-ACE_RCSID (ace,
- Codecs,
- "$Id$")
-
namespace
{
// Just in case ...
@@ -71,7 +69,7 @@ ACE_Base64::encode (const ACE_Byte* input,
result[pos++] = alphabet[bits & 0x3f];
cols += 4;
if (cols == max_columns) {
- if (is_chunked)
+ if (is_chunked)
result[pos++] = '\n';
cols = 0;
}