diff options
Diffstat (limited to 'gdb/stap-probe.c')
-rw-r--r-- | gdb/stap-probe.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/stap-probe.c b/gdb/stap-probe.c index 52e5267..ed7e1a0 100644 --- a/gdb/stap-probe.c +++ b/gdb/stap-probe.c @@ -1512,7 +1512,7 @@ handle_stap_probe (struct objfile *objfile, struct sdt_note *el, /* Making sure there is a name. */ if (name == NULL) { - complaint (&symfile_complaints, _("corrupt probe name when " + complaint (_("corrupt probe name when " "reading `%s'"), objfile_name (objfile)); @@ -1549,7 +1549,7 @@ handle_stap_probe (struct objfile *objfile, struct sdt_note *el, || (memchr (probe_args, '\0', (char *) el->data + el->size - name) != el->data + el->size - 1)) { - complaint (&symfile_complaints, _("corrupt probe argument when " + complaint (_("corrupt probe argument when " "reading `%s'"), objfile_name (objfile)); /* If the argument string is NULL, it means some problem happened with @@ -1590,7 +1590,7 @@ get_stap_base_address (bfd *obfd, bfd_vma *base) if (ret == NULL) { - complaint (&symfile_complaints, _("could not obtain base address for " + complaint (_("could not obtain base address for " "SystemTap section on objfile `%s'."), obfd->filename); return 0; @@ -1660,7 +1660,7 @@ stap_static_probe_ops::get_probes (std::vector<probe *> *probesp, { /* If we are here, it means we have failed to parse every known probe. */ - complaint (&symfile_complaints, _("could not parse SystemTap probe(s) " + complaint (_("could not parse SystemTap probe(s) " "from inferior")); return; } |