mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 09:38:57 +00:00
constify deprecate_cmd
This constifies deprecate_cmd and the "replacement" field in struct cmd_list_element. 2014-07-24 Tom Tromey <tromey@redhat.com> * cli/cli-decode.c (deprecate_cmd): Make "replacement" const. * cli/cli-decode.h (struct cmd_list_element) <replacement>: Now const. * command.h (deprecate_cmd): Update. * maint.c (maintenance_do_deprecate): Add casts.
This commit is contained in:
@@ -261,7 +261,7 @@ add_cmd (const char *name, enum command_class class, cmd_cfunc_ftype *fun,
|
||||
Returns a pointer to the deprecated command. */
|
||||
|
||||
struct cmd_list_element *
|
||||
deprecate_cmd (struct cmd_list_element *cmd, char *replacement)
|
||||
deprecate_cmd (struct cmd_list_element *cmd, const char *replacement)
|
||||
{
|
||||
cmd->cmd_deprecated = 1;
|
||||
cmd->deprecated_warn_user = 1;
|
||||
|
||||
@@ -135,7 +135,7 @@ struct cmd_list_element
|
||||
show_value_ftype *show_value_func;
|
||||
|
||||
/* If this command is deprecated, this is the replacement name. */
|
||||
char *replacement;
|
||||
const char *replacement;
|
||||
|
||||
/* If this command represents a show command, then this function
|
||||
is called before the variable's value is examined. */
|
||||
|
||||
Reference in New Issue
Block a user