Fixed the unsigned byte format, so that it includes the training 't'

git-svn-id: https://smali.googlecode.com/svn/trunk@196 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2009-06-21 06:18:28 +00:00
parent 103dd1612d
commit 8ff7f345ae

View File

@ -42,7 +42,7 @@ public class ByteRenderer implements AttributeRenderer {
public String toString(Object o, String s) { public String toString(Object o, String s) {
if (s.equals("unsigned")) { if (s.equals("unsigned")) {
Byte b = (Byte)o; Byte b = (Byte)o;
return "0x" + Integer.toHexString(b & 0xFF); return "0x" + Integer.toHexString(b & 0xFF) + "t";
} }
return toString(o); return toString(o);
} }