diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:36:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:46:02 -0500 |
commit | c583a2520616c2736cffc389c89a48b159366e6c (patch) | |
tree | b4925f26506fcee96c16119431c01760f05db95d /gdb/target-connection.c | |
parent | ca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff) | |
download | binutils-users/simark/clang-format.zip binutils-users/simark/clang-format.tar.gz binutils-users/simark/clang-format.tar.bz2 |
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/target-connection.c')
-rw-r--r-- | gdb/target-connection.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gdb/target-connection.c b/gdb/target-connection.c index cbd4555..de9ec98 100644 --- a/gdb/target-connection.c +++ b/gdb/target-connection.c @@ -63,8 +63,7 @@ std::string make_target_connection_string (process_stratum_target *t) { if (t->connection_string () != NULL) - return string_printf ("%s %s", t->shortname (), - t->connection_string ()); + return string_printf ("%s %s", t->shortname (), t->connection_string ()); else return t->shortname (); } @@ -98,7 +97,7 @@ print_connection (struct ui_out *uiout, const char *requested_connections) if (count == 0) { - uiout->message (_("No connections.\n")); + uiout->message (_ ("No connections.\n")); return; } @@ -155,8 +154,7 @@ void _initialize_target_connection (); void _initialize_target_connection () { - add_info ("connections", info_connections_command, - _("\ + add_info ("connections", info_connections_command, _ ("\ Target connections in use.\n\ Shows the list of target connections currently in use.")); } |