mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-01 07:15:07 +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
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return String.format("name: %s, type: 0x%x, offset: 0x%x, length: 0x%x",
|
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