diff options
author | Stu Grossman <grossman@cygnus> | 1993-04-01 01:05:39 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1993-04-01 01:05:39 +0000 |
commit | cbe61cc651ac93f530795ed167e587ace6350d41 (patch) | |
tree | 672197d296840127ce7789618407cad568ddd1b9 /opcodes | |
parent | 5128f8920887f1a15d6065ef9db691d2810e6e2e (diff) | |
download | gdb-cbe61cc651ac93f530795ed167e587ace6350d41.zip gdb-cbe61cc651ac93f530795ed167e587ace6350d41.tar.gz gdb-cbe61cc651ac93f530795ed167e587ace6350d41.tar.bz2 |
* m68k-dis.c: Fix prototype for fetch_arg().
Diffstat (limited to 'opcodes')
-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*)); |