mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 20:22:44 +00:00
Corrected compile error
This commit is contained in:
parent
13edbf8742
commit
4de3fa3258
@ -169,7 +169,7 @@ public class DBTraceFunctionSymbolView
|
||||
}
|
||||
|
||||
public static List<String> getCallingConventionNames(CompilerSpec cs) {
|
||||
PrototypeModel[] namedCCs = cs.getNamedCallingConventions();
|
||||
PrototypeModel[] namedCCs = cs.getCallingConventions();
|
||||
List<String> names = new ArrayList<>(2 + namedCCs.length);
|
||||
names.add(Function.UNKNOWN_CALLING_CONVENTION_STRING);
|
||||
names.add(Function.DEFAULT_CALLING_CONVENTION_STRING);
|
||||
@ -215,7 +215,7 @@ public class DBTraceFunctionSymbolView
|
||||
if (cs == null) {
|
||||
return EMPTY_MODEL_LIST;
|
||||
}
|
||||
return cs.getNamedCallingConventions();
|
||||
return cs.getCallingConventions();
|
||||
}
|
||||
|
||||
// TODO: Move this into a FunctionUtilities class?
|
||||
|
Loading…
Reference in New Issue
Block a user