diff options
author | Tom Tromey <tromey@redhat.com> | 2012-11-26 15:54:29 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-11-26 15:54:29 +0000 |
commit | 210bbc17ac115d12dbde59b5de97b8547e7465c8 (patch) | |
tree | 9db34aa07d76ed52ff2ae12d2ddf16c9e356aa0a /gdb/skip.c | |
parent | 0270a750ba588a8ad521e68be851772bac9c44f1 (diff) | |
download | binutils-210bbc17ac115d12dbde59b5de97b8547e7465c8.zip binutils-210bbc17ac115d12dbde59b5de97b8547e7465c8.tar.gz binutils-210bbc17ac115d12dbde59b5de97b8547e7465c8.tar.bz2 |
* ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
* dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
SYMBOL_SYMTAB.
* skip.c (skip_info): Use SYMBOL_SYMTAB.
Diffstat (limited to 'gdb/skip.c')
-rw-r--r-- | gdb/skip.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -304,7 +304,7 @@ Skiplist entry should have either a filename or a function name.")); if (sym) ui_out_field_fmt (current_uiout, "what", "%s at %s:%d", sym->ginfo.name, - sym->symtab->filename, + SYMBOL_SYMTAB (sym)->filename, sym->line); else ui_out_field_string (current_uiout, "what", "?"); |