(lookup_objc_class, lookup_child_selector): Remove
last argument from complaint function call.
This commit is contained in:
parent
ee9f683daa
commit
9d1127c56c
2 changed files with 7 additions and 4 deletions
|
@ -151,8 +151,7 @@ lookup_objc_class (char *classname)
|
|||
function = find_function_in_inferior("objc_lookup_class");
|
||||
else
|
||||
{
|
||||
complaint (&symfile_complaints, "no way to lookup Objective-C classes",
|
||||
0);
|
||||
complaint (&symfile_complaints, "no way to lookup Objective-C classes");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -179,8 +178,7 @@ lookup_child_selector (char *selname)
|
|||
function = find_function_in_inferior("sel_get_any_uid");
|
||||
else
|
||||
{
|
||||
complaint (&symfile_complaints, "no way to lookup Objective-C selectors",
|
||||
0);
|
||||
complaint (&symfile_complaints, "no way to lookup Objective-C selectors");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue