* core.c (dis_asm_read_memory): drop fourth arg which conflicts with
authorK. Richard Pixley <rich@cygnus>
Thu, 1 Apr 1993 05:27:06 +0000 (05:27 +0000)
committerK. Richard Pixley <rich@cygnus>
Thu, 1 Apr 1993 05:27:06 +0000 (05:27 +0000)
  prototype in ../include/dis-asm.h.

gdb/ChangeLog
gdb/core.c

index 44f8877a7dec2292fcdf09d105bdb7a0feceb012..187fb6cf1b68b2a8eff973a7844d8921a9560797 100644 (file)
@@ -1,3 +1,8 @@
+Wed Mar 31 21:23:41 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
+
+       * core.c (dis_asm_read_memory): drop fourth arg which conflicts
+         with prototype in ../include/dis-asm.h.
+
 Wed Mar 31 12:52:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
        * core.c (dis_asm_{read_memory,memory_error}): New functions.
index a357352f8de9728b57f29cfac48e0f0baa659b1c..3fa964b99f808b2991cf4d997689cd134aa71d6e 100644 (file)
@@ -161,13 +161,15 @@ read_memory (memaddr, myaddr, len)
     memory_error (status, memaddr);
 }
 
-/* Like target_read_memory, but slightly different parameters.  */
+/* Like target_read_memory, but slightly different parameters. 
+
+   FIXME: not according to it's prototype.  930331 krp. */
+
 int
-dis_asm_read_memory (memaddr, myaddr, len, info)
+dis_asm_read_memory (memaddr, myaddr, len)
      bfd_vma memaddr;
      bfd_byte *myaddr;
      int len;
-     disassemble_info *info;
 {
   return target_read_memory (memaddr, myaddr, len);
 }