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:
parent
625ad4406d
commit
9476501135
@ -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
|
||||
|
@ -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". */
|
||||
|
Loading…
Reference in New Issue
Block a user