diff options
author | Gary Benson <gbenson@redhat.com> | 2014-02-10 14:24:32 +0000 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2014-02-10 14:24:32 +0000 |
commit | 3f03e7b140f984868442092abe909ebb7f251f1d (patch) | |
tree | af949911345f7582a64f30156e0515c1e85ef980 /gdb/symfile-debug.c | |
parent | 96f861efe0b5a083211ec80db63a612f87daa626 (diff) | |
download | gdb-3f03e7b140f984868442092abe909ebb7f251f1d.zip gdb-3f03e7b140f984868442092abe909ebb7f251f1d.tar.gz gdb-3f03e7b140f984868442092abe909ebb7f251f1d.tar.bz2 |
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.
Diffstat (limited to 'gdb/symfile-debug.c')
-rw-r--r-- | gdb/symfile-debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |