mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-26 22:20:42 +00:00
Output crc32 in hex
This commit is contained in:
parent
7dd38f2d95
commit
15358c6cdd
@ -127,7 +127,7 @@ public class PNGChunk implements StructConverter {
|
||||
buff.append("Length: 0x" + Integer.toHexString(length) + "\n");
|
||||
buff.append("Chunk ID: " + getIDString() + "\n");
|
||||
buff.append("Chunk Data:" + new String(data) + "\n");
|
||||
buff.append("CRC32: 0x" + crc32 + "\n");
|
||||
buff.append("CRC32: 0x" + Integer.toHexString(crc32) + "\n");
|
||||
|
||||
return buff.toString();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user