aboutsummaryrefslogtreecommitdiff
path: root/gdb/skip.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-11-26 15:54:29 +0000
committerTom Tromey <tromey@redhat.com>2012-11-26 15:54:29 +0000
commit210bbc17ac115d12dbde59b5de97b8547e7465c8 (patch)
tree9db34aa07d76ed52ff2ae12d2ddf16c9e356aa0a /gdb/skip.c
parent0270a750ba588a8ad521e68be851772bac9c44f1 (diff)
downloadgdb-210bbc17ac115d12dbde59b5de97b8547e7465c8.zip
gdb-210bbc17ac115d12dbde59b5de97b8547e7465c8.tar.gz
gdb-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/skip.c b/gdb/skip.c
index 5a3fae3..9041b85 100644
--- a/gdb/skip.c
+++ b/gdb/skip.c
@@ -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", "?");