提交 4c0da8c3 编写于 作者: J Jan Peter Stotz 提交者: skylot

fix: binary xml hexadecimal int value decoding

上级 9aa30f77
......@@ -109,7 +109,7 @@ public class ValuesParser extends ParserConstants {
case TYPE_INT_DEC:
return Integer.toString(data);
case TYPE_INT_HEX:
return Integer.toHexString(data);
return "0x" + Integer.toHexString(data);
case TYPE_INT_BOOLEAN:
return data == 0 ? "false" : "true";
case TYPE_FLOAT:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册