(lookup_objc_class, lookup_child_selector): Remove

last argument from complaint function call.
This commit is contained in:
Adam Fedor 2002-12-24 03:42:36 +00:00
parent ee9f683daa
commit 9d1127c56c
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2002-12-23 Adam Fedor <fedor@gnu.org>
* objc-lang.c (lookup_objc_class, lookup_child_selector): Remove
last argument from complaint function call.
2002-12-20 Kevin Buettner <kevinb@redhat.com>
* exec.c (print_section_info): Add FIXME comments regarding format

View File

@ -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;
}