Fix typo in stap_parse_argument_conditionally
authorTom Tromey <tom@tromey.com>
Wed, 10 Feb 2021 00:35:59 +0000 (17:35 -0700)
committerTom Tromey <tom@tromey.com>
Wed, 10 Feb 2021 00:35:59 +0000 (17:35 -0700)
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.

gdb/ChangeLog
gdb/stap-probe.c

index 429e4d016f8174e95e4257b67e79a4cfe262a574..120dee8100427dc6c2e5a7075981f2da0766db3e 100644 (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
index 224dd5714fac05f5077661ae567c18ecb2aca647..bbdfbcd026737fe6cc763a3bd11851eb1837ec75 100644 (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;