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 Original file line number Diff line number Diff line change 4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
6
6
* You may obtain a copy of the License at
7
- *
7
+ *
8
8
* http://www.apache.org/licenses/LICENSE-2.0
9
- *
9
+ *
10
10
* Unless required by applicable law or agreed to in writing, software
11
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -127,7 +127,7 @@ public String toString() {
127
127
buff .append ("Length: 0x" + Integer .toHexString (length ) + "\n " );
128
128
buff .append ("Chunk ID: " + getIDString () + "\n " );
129
129
buff .append ("Chunk Data:" + new String (data ) + "\n " );
130
- buff .append ("CRC32: 0x" + crc32 + "\n " );
130
+ buff .append ("CRC32: 0x" + Integer . toHexString ( crc32 ) + "\n " );
131
131
132
132
return buff .toString ();
133
133
}
You can’t perform that action at this time.
0 commit comments