(lookup_objc_class, lookup_child_selector): Remove
authorAdam Fedor <fedor@gnu.org>
Tue, 24 Dec 2002 03:42:36 +0000 (03:42 +0000)
committerAdam Fedor <fedor@gnu.org>
Tue, 24 Dec 2002 03:42:36 +0000 (03:42 +0000)
last argument from complaint function call.

gdb/ChangeLog
gdb/objc-lang.c

index 2e32e65..597090d 100644 (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
index 45fe798..00a57dd 100644 (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;
     }