* symtab.c (lookup_block_symbol): Add missing PARAMS for
authorJeff Law <law@redhat.com>
Tue, 9 Sep 1997 23:40:44 +0000 (23:40 +0000)
committerJeff Law <law@redhat.com>
Tue, 9 Sep 1997 23:40:44 +0000 (23:40 +0000)
        function scoped prototype.

gdb/ChangeLog
gdb/symtab.c

index ff75c95d979b011dc54c9d3e994957be3c5e1290..e266390574a6cc5b70f0415a0bfe3aaa6f93dcf7 100644 (file)
@@ -1,3 +1,8 @@
+Tue Sep  9 17:41:41 1997  Jeffrey A Law  (law@cygnus.com)
+
+       * symtab.c (lookup_block_symbol): Add missing PARAMS for
+       function scoped prototype.
+
 Mon Sep  8 16:45:51 1997  Stu Grossman  <grossman@cygnus.com>
 
        * ser-e7kpc.c:  Don't include w32sut.h.  We no longer use the UT
index 9ae6442247c2b58bb0962cd78f059a3214f5e844..059820b94e40dab27c3f9943754edcf41c996a4a 100644 (file)
@@ -912,7 +912,8 @@ lookup_block_symbol (block, name, namespace)
      const char *name;
      const namespace_enum namespace;
 {
-  extern struct symbol *ref_search_val (struct symbol *sym, CORE_ADDR addr);
+  extern struct symbol *ref_search_val PARAMS ((struct symbol *sym,
+                                               CORE_ADDR addr));
   register int bot, top, inc;
   register struct symbol *sym;
   register struct symbol *sym_found = NULL;