Fix compile error

This commit fixes a compile error introduced by my previous commit.

Checked in as obvious.

2014-02-10  Gary Benson  <gbenson@redhat.com>

	* symfile-debug.c (debug_qf_expand_symtabs_matching):
	Rename name_matcher to symbol_matcher.
This commit is contained in:
Gary Benson 2014-02-10 14:24:32 +00:00
parent 96f861efe0
commit 3f03e7b140
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-02-10 Gary Benson <gbenson@redhat.com>
* symfile-debug.c (debug_qf_expand_symtabs_matching):
Rename name_matcher to symbol_matcher.
2014-02-10 Gary Benson <gbenson@redhat.com>
* symfile-debug.c (debug_qf_expand_symtabs_matching):

View File

@ -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);
}