diff options
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/m68k-dis.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 31c03ad..41dc46f 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +Wed Mar 31 17:04:31 1993 Stu Grossman (grossman@cygnus.com) + + * m68k-dis.c: Fix prototype for fetch_arg(). + Wed Mar 31 10:07:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com) * dis-buf.c: New file, for new read_memory_func interface. diff --git a/opcodes/m68k-dis.c b/opcodes/m68k-dis.c index 743ddac..8c61dc6 100644 --- a/opcodes/m68k-dis.c +++ b/opcodes/m68k-dis.c @@ -38,7 +38,7 @@ extern CONST struct ext_format ext_format_68881; /* Local function prototypes */ static int -fetch_arg PARAMS ((unsigned char *, int, int)); +fetch_arg PARAMS ((unsigned char *, int, int, disassemble_info *)); static void print_base PARAMS ((int, int, disassemble_info*)); |