Skip to content

Commit 15358c6

Browse files
authored
Output crc32 in hex
1 parent 7dd38f2 commit 15358c6

File tree

1 file changed

+1
-1
lines changed
  • Ghidra/Features/FileFormats/src/main/java/ghidra/file/formats/ios/png

1 file changed

+1
-1
lines changed

Ghidra/Features/FileFormats/src/main/java/ghidra/file/formats/ios/png/PNGChunk.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public String toString() {
127127
buff.append("Length: 0x" + Integer.toHexString(length) + "\n");
128128
buff.append("Chunk ID: " + getIDString() + "\n");
129129
buff.append("Chunk Data:" + new String(data) + "\n");
130-
buff.append("CRC32: 0x" + crc32 + "\n");
130+
buff.append("CRC32: 0x" + Integer.toHexString(crc32) + "\n");
131131

132132
return buff.toString();
133133
}

0 commit comments

Comments
 (0)