aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/guile/scm-param.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a052a3e..0ee72df 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
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.
2014-07-26 Ludovic Courtès <ludo@gnu.org>
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);