diff options
Diffstat (limited to 'gdb/objc-lang.c')
-rw-r--r-- | gdb/objc-lang.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gdb/objc-lang.c b/gdb/objc-lang.c index 45fe798..00a57dd 100644 --- a/gdb/objc-lang.c +++ b/gdb/objc-lang.c @@ -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; } |