* guile/scm-param.c (pascm_print_param_smob): Fix output.

This commit is contained in:
Doug Evans
2014-07-27 07:50:49 -07:00
parent 0c3abbc747
commit 37c5f1f7d2
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-07-27 Doug Evans <xdje42@gmail.com>
* guile/scm-param.c (pascm_print_param_smob): Fix output.
2014-07-27 Doug Evans <xdje42@gmail.com>
* guile/guile.c (gdbscm_execute_gdb_command): Fix typo in comment.

View File

@ -150,7 +150,7 @@ pascm_print_param_smob (SCM self, SCM port, scm_print_state *pstate)
if (! pascm_is_valid (p_smob))
scm_puts (" {invalid}", port);
gdbscm_printf (port, " %s", pascm_param_type_name (p_smob->type));
gdbscm_printf (port, " %s ", pascm_param_type_name (p_smob->type));
value = pascm_param_value (p_smob->type, &p_smob->value,
GDBSCM_ARG_NONE, NULL);