mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-25 07:48:36 +08:00
OMF format: Fix record name for 32 bit types
This commit is contained in:
@@ -246,6 +246,6 @@ public abstract class OmfRecord {
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.format("name: %s, type: 0x%x, offset: 0x%x, length: 0x%x",
|
||||
getRecordName(recordType), recordType, recordOffset, recordLength);
|
||||
getRecordName(recordType & 0xfe), recordType, recordOffset, recordLength);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user