diff options
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r-- | gdb/coffread.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c index 7f1ecd0..3d4dd60 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -2126,7 +2126,7 @@ coff_read_enum_type (int index, int length, int lastsym, /* Register our ability to parse symbols for coff BFD files. */ -static struct sym_fns coff_sym_fns = +static const struct sym_fns coff_sym_fns = { bfd_target_coff_flavour, coff_new_init, /* sym_new_init: init anything gbl to entire symtab */ @@ -2138,8 +2138,7 @@ static struct sym_fns coff_sym_fns = a file. */ NULL, /* sym_read_linetable */ default_symfile_relocate, /* sym_relocate: Relocate a debug section. */ - &psym_functions, - NULL /* next: pointer to next struct sym_fns */ + &psym_functions }; void |