Constify the 'arg' passed to commands in bsd-kvm.c.

gdb/ChangeLog:

	* bsd-kvm.c (bsd_kvm_cmd): Constify 'arg'.
	(bsd_kvm_proc_cmd): Likewise.
This commit is contained in:
John Baldwin 2017-11-15 11:35:15 -08:00
parent 625ad4406d
commit 9476501135
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2017-11-15 John Baldwin <jhb@FreeBSD.org>
* bsd-kvm.c (bsd_kvm_cmd): Constify 'arg'.
(bsd_kvm_proc_cmd): Likewise.
2017-11-15 Simon Marchi <simon.marchi@ericsson.com>
* tui/tui-win.c (window_name_completer): Replace VEC with

View File

@ -279,7 +279,7 @@ bsd_kvm_cmd (const char *arg, int fromtty)
#ifndef HAVE_STRUCT_THREAD_TD_PCB
static void
bsd_kvm_proc_cmd (char *arg, int fromtty)
bsd_kvm_proc_cmd (const char *arg, int fromtty)
{
CORE_ADDR addr;
@ -308,7 +308,7 @@ bsd_kvm_proc_cmd (char *arg, int fromtty)
#endif
static void
bsd_kvm_pcb_cmd (char *arg, int fromtty)
bsd_kvm_pcb_cmd (const char *arg, int fromtty)
{
if (arg == NULL)
/* i18n: PCB == "Process Control Block". */