Corrected Function Editor message when auto-storage is transformed to an

explicit parameter with custom-storage transition.
This commit is contained in:
ghidra1
2019-09-26 13:21:40 -04:00
parent fe73f77666
commit 6a27df2345
@@ -608,9 +608,9 @@ public class FunctionEditorModel {
ParamInfo paramInfo = parameters.get(i);
DataType dt = paramInfo.getDataType();
VariableStorage storage = paramInfo.getStorage();
signatureTransformed |= storage.isAutoStorage();
paramInfo.setFormalDataType(dt);
paramInfo.setStorage(storage.clone(program));
signatureTransformed = true;
}
}
catch (InvalidInputException e) {