Constify remote_console_output

This constifies the parameter to remote_console_output.

gdb/ChangeLog
2019-01-14  Tom Tromey  <tom@tromey.com>

	* remote.c (remote_console_output): Make parameter const.
This commit is contained in:
Tom Tromey 2019-01-06 13:26:22 -07:00
parent 491adecac4
commit 05be00a884
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2019-01-14 Tom Tromey <tom@tromey.com>
* remote.c (remote_console_output): Make parameter const.
2019-01-14 Tom Tromey <tom@tromey.com>
* target-debug.h (target_debug_print_signals): Constify.

View File

@ -1024,7 +1024,7 @@ static void remote_async_inferior_event_handler (gdb_client_data);
static bool remote_read_description_p (struct target_ops *target);
static void remote_console_output (char *msg);
static void remote_console_output (const char *msg);
static void remote_btrace_reset (remote_state *rs);
@ -6799,9 +6799,9 @@ remote_target::terminal_ours ()
}
static void
remote_console_output (char *msg)
remote_console_output (const char *msg)
{
char *p;
const char *p;
for (p = msg; p[0] && p[1]; p += 2)
{