diff options
Diffstat (limited to 'gdb/guile')
-rw-r--r-- | gdb/guile/scm-param.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/guile/scm-param.c b/gdb/guile/scm-param.c index ab00fd9..9478778 100644 --- a/gdb/guile/scm-param.c +++ b/gdb/guile/scm-param.c @@ -269,7 +269,7 @@ pascm_signal_setshow_error (SCM exception, const char *msg) Note: ARGS is always passed as NULL. */ static void -pascm_set_func (char *args, int from_tty, struct cmd_list_element *c) +pascm_set_func (const char *args, int from_tty, struct cmd_list_element *c) { param_smob *p_smob = (param_smob *) get_cmd_context (c); SCM self, result, exception; @@ -357,7 +357,7 @@ static void add_setshow_generic (enum var_types param_type, enum command_class cmd_class, char *cmd_name, param_smob *self, char *set_doc, char *show_doc, char *help_doc, - cmd_sfunc_ftype *set_func, + cmd_const_sfunc_ftype *set_func, show_value_ftype *show_func, struct cmd_list_element **set_list, struct cmd_list_element **show_list, |