summaryrefslogtreecommitdiff
path: root/src/accelwattch/xmlParser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/accelwattch/xmlParser.cc')
-rw-r--r--src/accelwattch/xmlParser.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/accelwattch/xmlParser.cc b/src/accelwattch/xmlParser.cc
index 9f01ebe..084a50d 100644
--- a/src/accelwattch/xmlParser.cc
+++ b/src/accelwattch/xmlParser.cc
@@ -3241,7 +3241,7 @@ XMLSTR XMLParserBase64Tool::encode(unsigned char *inbuf, unsigned int inlen,
*(curr++) = base64EncodeTable[j >> 18];
*(curr++) = base64EncodeTable[(j >> 12) & 0x3f];
*(curr++) = base64EncodeTable[(j >> 6) & 0x3f];
- *(curr++) = base64EncodeTable[(j) & 0x3f];
+ *(curr++) = base64EncodeTable[(j)&0x3f];
if (formatted) {
if (!k) {
*(curr++) = _CXML('\n');