Fix compile error
authorGary Benson <gbenson@redhat.com>
Mon, 10 Feb 2014 14:24:32 +0000 (14:24 +0000)
committerGary Benson <gbenson@redhat.com>
Mon, 10 Feb 2014 14:24:32 +0000 (14:24 +0000)
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.

gdb/ChangeLog
gdb/symfile-debug.c

index 84c7a7fec9148ad6b350e84556804d6b4cdc1f2e..82751993cfdd5973c4414d6cd3afbff1e71ed046 100644 (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):
index 030489e4507b08b68fff6fff72e100bed68fc98e..e0a5011c0d21e4189e42cccac59e79730d704e61 100644 (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);
 }