diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-03-27 23:29:46 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-03-27 23:29:46 +0000 |
commit | 930ab856534f83e0fe5039357bf054f245216e63 (patch) | |
tree | 2f0d40e8397795d72a7dd107d82cc9a9b7975dae /opcodes/a29k-dis.c | |
parent | 15232df4a3afdcfd6552502231f10d87c7f90266 (diff) | |
download | gdb-930ab856534f83e0fe5039357bf054f245216e63.zip gdb-930ab856534f83e0fe5039357bf054f245216e63.tar.gz gdb-930ab856534f83e0fe5039357bf054f245216e63.tar.bz2 |
Fix gcc -Wall warnings. See ChangeLog for details.
Diffstat (limited to 'opcodes/a29k-dis.c')
-rw-r--r-- | opcodes/a29k-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/a29k-dis.c b/opcodes/a29k-dis.c index 46245e7..72959c9 100644 --- a/opcodes/a29k-dis.c +++ b/opcodes/a29k-dis.c @@ -1,5 +1,5 @@ /* Instruction printing code for the AMD 29000 - Copyright (C) 1990 Free Software Foundation, Inc. + Copyright (C) 1990, 93, 94, 95, 1998 Free Software Foundation, Inc. Contributed by Cygnus Support. Written by Jim Kingdon. This file is part of GDB. @@ -119,7 +119,7 @@ find_bytes_little (insn, insn0, insn8, insn16, insn24) *insn0 = insn[0]; } -typedef (*find_byte_func_type) +typedef void (*find_byte_func_type) PARAMS ((char *, unsigned char *, unsigned char *, unsigned char *, unsigned char *)); |