diff options
author | Stu Grossman <grossman@cygnus> | 1992-12-29 00:27:18 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-12-29 00:27:18 +0000 |
commit | b8ef816335ed97ac644f527f12edc8aa8e9fac56 (patch) | |
tree | b4368d578b1114f1a206ceaf778fea1f3e6c14b0 /gdb/symfile.c | |
parent | b5c10493e9666be2c7413ffcf712160d35246966 (diff) | |
download | gdb-b8ef816335ed97ac644f527f12edc8aa8e9fac56.zip gdb-b8ef816335ed97ac644f527f12edc8aa8e9fac56.tar.gz gdb-b8ef816335ed97ac644f527f12edc8aa8e9fac56.tar.bz2 |
* hppah-tdep.c (skip_trampoline_code): Use new macros for
accessing minimal symbol data.
* infcmd.c (read_pc): Use #ifdef, not #if.
* symfile.c (syms_from_objfile): Add CONST to decl for targets.
* tm-hppa.h (FIX_CALL_DUMMY): Use new macros for accessing
minimal symbol data.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index b09c691..2265693 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -455,7 +455,7 @@ syms_from_objfile (objfile, addr, mainline, verbo) list with the one for the bfd we are using. FIXME: Remove this check after a round of testing. -- gnu@cygnus.com, 16dec92 */ - char **targets = bfd_target_list (); + CONST char **targets = bfd_target_list (); if (targets != NULL && *targets != NULL) { if (bfd_get_symbol_leading_char (objfile->obfd) != |