Skip to content

Commit 2333ab6

Browse files
committed
Merge branch 'GP-0_ryanmkurtz_PR-7213_kaibolay_crc32-hex'
2 parents 9a4da4e + 3b4d4f9 commit 2333ab6

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -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)