This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[commit] guile: Fix parameter printing.
- From: Doug Evans <xdje42 at gmail dot com>
- To: gdb-patches at sourceware dot org
- Date: Sun, 27 Jul 2014 07:52:37 -0700
- Subject: [commit] guile: Fix parameter printing.
- Authentication-results: sourceware.org; auth=none
Hi.
fyi, I committed this.
2014-07-27 Doug Evans <xdje42@gmail.com>
* guile/scm-param.c (pascm_print_param_smob): Fix output.
diff --git a/gdb/guile/scm-param.c b/gdb/guile/scm-param.c
index 5bfb4ae..683ec7d 100644
--- a/gdb/guile/scm-param.c
+++ b/gdb/guile/scm-param.c
@@ -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);