diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/stap-probe.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 429e4d0..120dee8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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 diff --git a/gdb/stap-probe.c b/gdb/stap-probe.c index 224dd57..bbdfbcd 100644 --- a/gdb/stap-probe.c +++ b/gdb/stap-probe.c @@ -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; |