summaryrefslogtreecommitdiff
path: root/gdb/infcmd.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-01-12 09:45:57 +0000
committerAndrew Cagney <cagney@redhat.com>2001-01-12 09:45:57 +0000
commit2d626dbcd3a16ae3d137b1d1202b1b6f9f0406bb (patch)
tree6f5e5261e6e3bcb685169d64a2f583a1b413554d /gdb/infcmd.c
parent6194429912dbcecb8cf2c41f7552b5fee3a1453d (diff)
downloadgdb-2d626dbcd3a16ae3d137b1d1202b1b6f9f0406bb.tar.gz
Restore missing space lost when switching to UI_OUT.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r--gdb/infcmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c
index fb788f86e0a..cd18676a11a 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -1017,7 +1017,7 @@ print_return_value (int structure_return, struct type *value_type)
stb = ui_out_stream_new (uiout);
ui_out_text (uiout, "Value returned is ");
ui_out_field_fmt (uiout, "gdb-result-var", "$%d", record_latest_value (value));
- ui_out_text (uiout, "= ");
+ ui_out_text (uiout, " = ");
value_print (value, stb->stream, 0, Val_no_prettyprint);
ui_out_field_stream (uiout, "return-value", stb);
ui_out_text (uiout, "\n");