Fix the formatting of the instruction offset comment

git-svn-id: https://smali.googlecode.com/svn/trunk@692 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2010-04-03 23:02:39 +00:00
parent baec3bc450
commit 19b601436a

View File

@ -369,7 +369,7 @@ public class MethodDefinition {
@Override @Override
public boolean writeTo(IndentingWriter writer) throws IOException { public boolean writeTo(IndentingWriter writer) throws IOException {
writer.write("#@"); writer.write("#@");
IntegerRenderer.writeUnsignedTo(writer, codeAddress); writer.printLongAsHex(codeAddress & 0xFFFFFFFF);
return true; return true;
} }
}); });