* corelow.c, exec.c, inftarg.c, m3-nat.c, op50-rom.c, procfs.c,
[deliverable/binutils-gdb.git] / gdb / mips-pinsn.c
index eec22c519a3556b8996058eac6007359b629db86..fff36d83c3faa7d70b0fdda2bc655af5c6ad7c1d 100644 (file)
@@ -27,7 +27,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 int
 print_insn (memaddr, stream)
      CORE_ADDR memaddr;
-     FILE *stream;
+     GDB_FILE *stream;
 {
   disassemble_info info;
 
@@ -35,7 +35,7 @@ print_insn (memaddr, stream)
 
   /* print_insn_mips is in opcodes/mips-dis.c.  */
   if (TARGET_BYTE_ORDER == BIG_ENDIAN)
-    print_insn_big_mips (memaddr, &info);
+    return print_insn_big_mips ((bfd_vma) memaddr, &info);
   else
-    print_insn_little_mips (memaddr, &info);
+    return print_insn_little_mips ((bfd_vma) memaddr, &info);
 }
This page took 0.023727 seconds and 4 git commands to generate.