diff options
author | Tom Tromey <tom@tromey.com> | 2021-02-09 17:35:59 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-02-09 17:35:59 -0700 |
commit | 9bb305b389f98a1ea271463a0a8ded70317e3f74 (patch) | |
tree | 070b396158251ff9989fdee5cf27fb80fe9afc92 /gdb/stap-probe.c | |
parent | 238ebeb127eb6eb990d31b73f16370860ef2c820 (diff) | |
download | gdb-9bb305b389f98a1ea271463a0a8ded70317e3f74.zip gdb-9bb305b389f98a1ea271463a0a8ded70317e3f74.tar.gz gdb-9bb305b389f98a1ea271463a0a8ded70317e3f74.tar.bz2 |
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.
Diffstat (limited to 'gdb/stap-probe.c')
-rw-r--r-- | gdb/stap-probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |