mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-29 06:06:30 +08:00
GP-1 fixed error message for merging packed structures
This commit is contained in:
+1
-1
@@ -189,7 +189,7 @@ public class StructureMerger extends DataTypeMerger<Structure> {
|
|||||||
DataType resultDt = workingComp.getDataType();
|
DataType resultDt = workingComp.getDataType();
|
||||||
DataType dt = comp.getDataType();
|
DataType dt = comp.getDataType();
|
||||||
if (!resultDt.equals(dt)) {
|
if (!resultDt.equals(dt)) {
|
||||||
error("Packed components have conflicting datatypes at ordinal" +
|
error("Packed components have conflicting datatypes at ordinal " +
|
||||||
workingComp.getOrdinal() + ", offset " + comp.getOffset());
|
workingComp.getOrdinal() + ", offset " + comp.getOffset());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user