Kaydet (Commit) 4e601bda authored tarafından Michael Stahl's avatar Michael Stahl

extensions: fix swapped "insert" parameters

Change-Id: If9667cad9fcc0ff3b1cc8d36c0619d80d7f3e2b9
üst ff3203c5
......@@ -657,9 +657,9 @@ namespace pcr
nVal >>= 4;
if (c<=9) c += '0';
else c += 'A' - 10;
aStr.insert(c,0);
aStr.insert(0, c);
}
while (aStr.getLength() < nLength) aStr.insert('0',0);
while (aStr.getLength() < nLength) aStr.insert(0, '0');
return aStr.makeStringAndClear();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment