Fix typo in stap_parse_argument_conditionally

This fixes a typo in an error message in
stap_parse_argument_conditionally.

gdb/ChangeLog
2021-02-09  Tom Tromey  <tom@tromey.com>

	* stap-probe.c (stap_parse_argument_conditionally): Fix typo.
This commit is contained in:
Tom Tromey
2021-02-09 17:35:59 -07:00
parent 238ebeb127
commit 9bb305b389
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2021-02-09 Tom Tromey <tom@tromey.com>
* stap-probe.c (stap_parse_argument_conditionally): Fix typo.
2021-02-09 Tom de Vries <tdevries@suse.de>
PR symtab/27341

View File

@@ -1031,7 +1031,7 @@ stap_parse_argument_conditionally (struct stap_parse_info *p)
p->arg = skip_spaces (p->arg);
if (*p->arg != ')')
error (_("Missign close-parenthesis on expression `%s'."),
error (_("Missing close-parenthesis on expression `%s'."),
p->saved_arg);
--p->inside_paren_p;