diff options
Diffstat (limited to 'gdb/guile/scm-cmd.c')
-rw-r--r-- | gdb/guile/scm-cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/guile/scm-cmd.c b/gdb/guile/scm-cmd.c index 4745def..bcc7462 100644 --- a/gdb/guile/scm-cmd.c +++ b/gdb/guile/scm-cmd.c @@ -385,7 +385,7 @@ cmdscm_completer (struct cmd_list_element *command, { command_smob *c_smob/*obj*/ = (command_smob *) get_cmd_context (command); SCM completer_result_scm; - SCM text_scm, word_scm, result_scm; + SCM text_scm, word_scm; gdb_assert (c_smob != NULL); gdb_assert (gdbscm_is_procedure (c_smob->complete)); @@ -746,7 +746,7 @@ gdbscm_register_command_x (SCM self) { command_smob *c_smob = cmdscm_get_command_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME); - char *cmd_name, *pfx_name; + char *cmd_name; struct cmd_list_element **cmd_list; struct cmd_list_element *cmd = NULL; |