summaryrefslogtreecommitdiff
path: root/gdb/skip.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-11-26 15:54:23 +0000
committerTom Tromey <tromey@redhat.com>2012-11-26 15:54:23 +0000
commit77be3edd8c16c3debecfe5e177be2c1706250097 (patch)
treeaa392d84abfa076599040229c590dc714e17a665 /gdb/skip.c
parent54625e3a2ad2f8120edab2c4b35519c3fe448fe6 (diff)
downloadgdb-77be3edd8c16c3debecfe5e177be2c1706250097.tar.gz
* 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 5a3fae388ee..9041b857e90 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", "?");