mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-23 04:39:55 +00:00
Merge branch 'GP-0_ryanmkurtz_PR-7213_kaibolay_crc32-hex'
This commit is contained in:
commit
2333ab6111
@ -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