From 3f03e7b140f984868442092abe909ebb7f251f1d Mon Sep 17 00:00:00 2001 From: Gary Benson Date: Mon, 10 Feb 2014 14:24:32 +0000 Subject: [PATCH] Fix compile error This commit fixes a compile error introduced by my previous commit. Checked in as obvious. 2014-02-10 Gary Benson * symfile-debug.c (debug_qf_expand_symtabs_matching): Rename name_matcher to symbol_matcher. --- gdb/ChangeLog | 5 +++++ gdb/symfile-debug.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 84c7a7f..8275199 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,6 +1,11 @@ 2014-02-10 Gary Benson * symfile-debug.c (debug_qf_expand_symtabs_matching): + Rename name_matcher to symbol_matcher. + +2014-02-10 Gary Benson + + * symfile-debug.c (debug_qf_expand_symtabs_matching): Use expand_symtabs_file_matcher_ftype and expand_symtabs_symbol_matcher_ftype. diff --git a/gdb/symfile-debug.c b/gdb/symfile-debug.c index 030489e..e0a5011 100644 --- a/gdb/symfile-debug.c +++ b/gdb/symfile-debug.c @@ -296,13 +296,13 @@ debug_qf_expand_symtabs_matching (struct objfile *objfile, "qf->expand_symtabs_matching (%s, %s, %s, %s, %s)\n", debug_objfile_name (objfile), host_address_to_string (file_matcher), - host_address_to_string (name_matcher), + host_address_to_string (symbol_matcher), search_domain_name (kind), host_address_to_string (data)); debug_data->real_sf->qf->expand_symtabs_matching (objfile, file_matcher, - name_matcher, + symbol_matcher, kind, data); } -- 2.7.4