aboutsummaryrefslogtreecommitdiff
path: root/gdb/symfile-debug.c
diff options
context:
space:
mode:
authorGary Benson <gbenson@redhat.com>2014-02-10 14:07:44 +0000
committerGary Benson <gbenson@redhat.com>2014-02-10 14:07:44 +0000
commit96f861efe0b5a083211ec80db63a612f87daa626 (patch)
tree5fd1b8534e534a33e0a98715253757bb9031a403 /gdb/symfile-debug.c
parentee01b6652ad55437e777fb7e6b1745782dc205a4 (diff)
downloadfsf-binutils-gdb-96f861efe0b5a083211ec80db63a612f87daa626.zip
fsf-binutils-gdb-96f861efe0b5a083211ec80db63a612f87daa626.tar.gz
fsf-binutils-gdb-96f861efe0b5a083211ec80db63a612f87daa626.tar.bz2
Update debug_qf_expand_symtabs_matching to use typedefs.
Commit 206f2a5777679e6d1ad21ce435f6e7af92e2d41a added two new typedefs, but did not update debug_qf_expand_symtabs_matching to use them. This patch fixes this. Checked in as obvious. 2014-02-10 Gary Benson <gbenson@redhat.com> * symfile-debug.c (debug_qf_expand_symtabs_matching): Use expand_symtabs_file_matcher_ftype and expand_symtabs_symbol_matcher_ftype.
Diffstat (limited to 'gdb/symfile-debug.c')
-rw-r--r--gdb/symfile-debug.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/symfile-debug.c b/gdb/symfile-debug.c
index 705d9cb..030489e 100644
--- a/gdb/symfile-debug.c
+++ b/gdb/symfile-debug.c
@@ -284,9 +284,8 @@ debug_qf_map_matching_symbols (struct objfile *objfile,
static void
debug_qf_expand_symtabs_matching (struct objfile *objfile,
- int (*file_matcher) (const char *, void *,
- int basenames),
- int (*name_matcher) (const char *, void *),
+ expand_symtabs_file_matcher_ftype *file_matcher,
+ expand_symtabs_symbol_matcher_ftype *symbol_matcher,
enum search_domain kind,
void *data)
{