summaryrefslogtreecommitdiff
path: root/src/accelwattch/xmlParser.cc
diff options
context:
space:
mode:
authorJRPan <[email protected]>2025-08-18 23:09:47 -0700
committerGitHub <[email protected]>2025-08-19 06:09:47 +0000
commit21b18be3832b80b00d4890f041818bac431866e7 (patch)
tree4a8801a93a6dde20b747ef6db509215894c9f3ec /src/accelwattch/xmlParser.cc
parent33644740f15e0fa9f3d64ff98956569b2acf47bc (diff)
running formatter (#126)
* running formatter * consolidate CI runs * use cluster to run formatter * use cluster to run formatter * Add a CI-Success step
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');