mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
Constify some commands in skip.c
gdb/ChangeLog 2017-09-27 Tom Tromey <tom@tromey.com> * skip.c (skip_file_command, skip_function_command) (skip_enable_command, skip_disable_command, skip_delete_command): Constify.
This commit is contained in:
parent
cdb34d4a1c
commit
863779b0c6
@ -1,3 +1,9 @@
|
||||
2017-09-27 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* skip.c (skip_file_command, skip_function_command)
|
||||
(skip_enable_command, skip_disable_command, skip_delete_command):
|
||||
Constify.
|
||||
|
||||
2017-09-27 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* record-btrace.c (cmd_record_btrace_bts_start)
|
||||
|
10
gdb/skip.c
10
gdb/skip.c
@ -161,7 +161,7 @@ skiplist_entry::add_entry (bool file_is_glob, std::string &&file,
|
||||
}
|
||||
|
||||
static void
|
||||
skip_file_command (char *arg, int from_tty)
|
||||
skip_file_command (const char *arg, int from_tty)
|
||||
{
|
||||
struct symtab *symtab;
|
||||
const char *filename = NULL;
|
||||
@ -199,7 +199,7 @@ skip_function (const char *name)
|
||||
}
|
||||
|
||||
static void
|
||||
skip_function_command (char *arg, int from_tty)
|
||||
skip_function_command (const char *arg, int from_tty)
|
||||
{
|
||||
/* Default to the current function if no argument is given. */
|
||||
if (arg == NULL)
|
||||
@ -424,7 +424,7 @@ info_skip_command (char *arg, int from_tty)
|
||||
}
|
||||
|
||||
static void
|
||||
skip_enable_command (char *arg, int from_tty)
|
||||
skip_enable_command (const char *arg, int from_tty)
|
||||
{
|
||||
bool found = false;
|
||||
|
||||
@ -440,7 +440,7 @@ skip_enable_command (char *arg, int from_tty)
|
||||
}
|
||||
|
||||
static void
|
||||
skip_disable_command (char *arg, int from_tty)
|
||||
skip_disable_command (const char *arg, int from_tty)
|
||||
{
|
||||
bool found = false;
|
||||
|
||||
@ -456,7 +456,7 @@ skip_disable_command (char *arg, int from_tty)
|
||||
}
|
||||
|
||||
static void
|
||||
skip_delete_command (char *arg, int from_tty)
|
||||
skip_delete_command (const char *arg, int from_tty)
|
||||
{
|
||||
bool found = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user