diff options
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 2a257c2..1b50676 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -11865,7 +11865,7 @@ print_mention_exception (struct breakpoint *b) { std::string info = string_printf (_("`%s' Ada exception"), c->excep_string.c_str ()); - uiout->text (info.c_str ()); + uiout->text (info); } else uiout->text (_("all Ada exceptions")); @@ -11881,7 +11881,7 @@ print_mention_exception (struct breakpoint *b) std::string info = string_printf (_("`%s' Ada exception handlers"), c->excep_string.c_str ()); - uiout->text (info.c_str ()); + uiout->text (info); } else uiout->text (_("all Ada exceptions handlers")); |